public enum DebugState extends java.lang.Enum<DebugState>
| Enum Constant and Description |
|---|
CONFIGURATION
When variability configuration is changing.
|
FILE_IN
When reading from file.
|
FILE_OUT
When writing to file.
|
MEMORY_ALLOCATION
When allocating memory.
|
MEMORY_FREE
When freeing memory.
|
METHOD_ENTER
When entering a method.
|
METHOD_EXIT
When exiting a method.
|
NET_IN
When writing to network.
|
NET_OUT
When reading from network.
|
| Modifier and Type | Field and Description |
|---|---|
static DebugState[] |
DEFAULT
Provides the default value.
|
private java.lang.String |
marker
Stores the marker to be printed out with the debugging info.
|
static DebugState[] |
NONE
Provides a constant empty array.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMarker()
Returns the marker to be printed out with the debugging info.
|
static DebugState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugState CONFIGURATION
public static final DebugState MEMORY_FREE
public static final DebugState METHOD_ENTER
public static final DebugState METHOD_EXIT
public static final DebugState MEMORY_ALLOCATION
public static final DebugState NET_IN
public static final DebugState NET_OUT
public static final DebugState FILE_IN
public static final DebugState FILE_OUT
public static final DebugState[] NONE
public static final DebugState[] DEFAULT
private java.lang.String marker
public static DebugState[] values()
for (DebugState c : DebugState.values()) System.out.println(c);
public static DebugState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getMarker()