static enum ASTInspector.Flag extends java.lang.Enum<ASTInspector.Flag>
| Enum Constant and Description |
|---|
BACKREF |
BLOCK_ARG |
CLASS |
CLASS_VAR |
CLOSURE |
CONSTANT |
EVAL |
FRAME_AWARE |
FRAME_BLOCK |
FRAME_CLASS |
FRAME_NAME |
FRAME_SELF |
FRAME_VISIBILITY |
LASTLINE |
METHOD |
OPT_ARGS |
REST_ARG |
RETRY |
SCOPE_AWARE |
SUPER |
ZSUPER |
| Modifier and Type | Field and Description |
|---|---|
int |
flag |
| Modifier and Type | Method and Description |
|---|---|
static ASTInspector.Flag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ASTInspector.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTInspector.Flag BLOCK_ARG
public static final ASTInspector.Flag CLOSURE
public static final ASTInspector.Flag CLASS
public static final ASTInspector.Flag METHOD
public static final ASTInspector.Flag EVAL
public static final ASTInspector.Flag FRAME_AWARE
public static final ASTInspector.Flag FRAME_SELF
public static final ASTInspector.Flag FRAME_VISIBILITY
public static final ASTInspector.Flag FRAME_BLOCK
public static final ASTInspector.Flag FRAME_NAME
public static final ASTInspector.Flag BACKREF
public static final ASTInspector.Flag LASTLINE
public static final ASTInspector.Flag FRAME_CLASS
public static final ASTInspector.Flag OPT_ARGS
public static final ASTInspector.Flag REST_ARG
public static final ASTInspector.Flag SCOPE_AWARE
public static final ASTInspector.Flag ZSUPER
public static final ASTInspector.Flag CONSTANT
public static final ASTInspector.Flag CLASS_VAR
public static final ASTInspector.Flag SUPER
public static final ASTInspector.Flag RETRY
public static ASTInspector.Flag[] values()
for (ASTInspector.Flag c : ASTInspector.Flag.values()) System.out.println(c);
public static ASTInspector.Flag 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 null