public enum DebugEventDetail extends java.lang.Enum<DebugEventDetail> implements IntegralConstant
DebugEvent
Enum Constant and Description |
---|
BREAKPOINT |
CLIENT_REQUEST |
CONTENT |
EVALUATION |
EVALUATION_IMPLICIT |
STATE |
STEP_END |
STEP_INTO |
STEP_OVER |
STEP_RETURN |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static java.util.Set<DebugEventDetail> |
setOf(int values) |
static DebugEventDetail |
valueOf(int value) |
static DebugEventDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugEventDetail[] |
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 DebugEventDetail STEP_INTO
DebugEvent.STEP_INTO
public static final DebugEventDetail STEP_OVER
DebugEvent.STEP_OVER
public static final DebugEventDetail STEP_RETURN
DebugEvent.STEP_RETURN
public static final DebugEventDetail STEP_END
DebugEvent.STEP_END
public static final DebugEventDetail BREAKPOINT
DebugEvent.BREAKPOINT
public static final DebugEventDetail CLIENT_REQUEST
DebugEvent.CLIENT_REQUEST
public static final DebugEventDetail EVALUATION
DebugEvent.EVALUATION
public static final DebugEventDetail EVALUATION_IMPLICIT
DebugEvent.EVALUATION_IMPLICIT
public static final DebugEventDetail STATE
DebugEvent.STATE
public static final DebugEventDetail CONTENT
DebugEvent.CONTENT
public static DebugEventDetail[] values()
for (DebugEventDetail c : DebugEventDetail.values()) System.out.println(c);
public static DebugEventDetail 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 DebugEventDetail valueOf(int value)
public static java.util.Set<DebugEventDetail> setOf(int values)
public int getValue()
getValue
in interface IntegralConstant