public enum SourceElement extends Enum<SourceElement>
Tag
types and this enum defines the set of syntax element kinds known to the
debugger.Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
EXPRESSION
Denotes program locations that represent an expression of a guest language.
|
ROOT
Denotes program locations that represent a function of a guest language.
|
STATEMENT
Denotes program locations that represent a statement of a guest language.
|
Modifier and Type | Method and Description |
---|---|
static SourceElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceElement STATEMENT
StandardTags.StatementTag
.public static final SourceElement EXPRESSION
StandardTags.ExpressionTag
.public static final SourceElement ROOT
StandardTags.RootTag
.public static SourceElement[] values()
public static SourceElement 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 null