public enum InfopointReason extends Enum<InfopointReason>
Enum Constant and Description |
---|
CALL |
IMPLICIT_EXCEPTION |
LINE_NUMBER |
METHOD_END |
METHOD_START |
SAFEPOINT |
UNKNOWN |
Modifier and Type | Field and Description |
---|---|
private boolean |
canBeOmitted |
Modifier and Type | Method and Description |
---|---|
boolean |
canBeOmitted() |
static InfopointReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfopointReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfopointReason UNKNOWN
public static final InfopointReason SAFEPOINT
public static final InfopointReason CALL
public static final InfopointReason IMPLICIT_EXCEPTION
public static final InfopointReason METHOD_START
public static final InfopointReason METHOD_END
public static final InfopointReason LINE_NUMBER
private final boolean canBeOmitted
public static InfopointReason[] values()
for (InfopointReason c : InfopointReason.values()) System.out.println(c);
public static InfopointReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean canBeOmitted()