public enum DebugEventKind extends java.lang.Enum<DebugEventKind> implements IntegralConstant
DebugEvent
Enum Constant and Description |
---|
CHANGE |
CREATE |
MODEL_SPECIFIC |
RESUME |
SUSPEND |
TERMINATE |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static java.util.Set<DebugEventKind> |
setOf(int values) |
static DebugEventKind |
valueOf(int value) |
static DebugEventKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugEventKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static int |
valuesAsInteger() |
static int |
valuesAsInteger(java.util.Set<JavaElementDeltaFlag> values) |
static java.util.Set<java.lang.Integer> |
valuesAsIntegers() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
equals
public static final DebugEventKind RESUME
DebugEvent.RESUME
public static final DebugEventKind SUSPEND
DebugEvent.SUSPEND
public static final DebugEventKind CREATE
DebugEvent.CREATE
public static final DebugEventKind TERMINATE
DebugEvent.TERMINATE
public static final DebugEventKind CHANGE
DebugEvent.CHANGE
public static final DebugEventKind MODEL_SPECIFIC
DebugEvent.MODEL_SPECIFIC
public static DebugEventKind[] values()
for (DebugEventKind c : DebugEventKind.values()) System.out.println(c);
public static DebugEventKind 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 static java.util.Set<java.lang.Integer> valuesAsIntegers()
public static int valuesAsInteger()
public static int valuesAsInteger(java.util.Set<JavaElementDeltaFlag> values)
public static DebugEventKind valueOf(int value)
public static java.util.Set<DebugEventKind> setOf(int values)
public int getValue()
getValue
in interface IntegralConstant