public enum TagType extends Enum<TagType>
Modifier and Type | Method and Description |
---|---|
static TagType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagType ArrayExpr
public static final TagType AssignExpr
public static final TagType BinaryExpr
public static final TagType CallExpr
public static final TagType ConditionalExpr
public static final TagType CountExpr
public static final TagType DeleteExpr
public static final TagType EvalExpr
public static final TagType FunctionExpr
public static final TagType IdExpr
public static final TagType InvokeExpr
public static final TagType LiteralExpr
public static final TagType LogicalAndExpr
public static final TagType LogicalOrExpr
public static final TagType MemberExpr
public static final TagType NewExpr
public static final TagType ObjectExpr
public static final TagType RegExpExpr
public static final TagType ThisExpr
public static final TagType TypeofExpr
public static final TagType UnaryExpr
public static final TagType BlockStmt
public static final TagType BreakStmt
public static final TagType ContinueStmt
public static final TagType DebuggerStmt
public static final TagType DoWhileStmt
public static final TagType EmptyStmt
public static final TagType ForInStmt
public static final TagType ForStmt
public static final TagType IfStmt
public static final TagType LabelledStmt
public static final TagType ReturnStmt
public static final TagType SwitchStmt
public static final TagType ThrowStmt
public static final TagType TryStmt
public static final TagType WhileStmt
public static final TagType WithStmt
public static final TagType FunctionDecl
public static final TagType ParamDecl
public static final TagType PrologueDecl
public static final TagType VarDecl
public static final TagType DataProp
public static final TagType GetterProp
public static final TagType SetterProp
public static final TagType IdPatt
public static final TagType InitPatt
public static final TagType Case
public static final TagType DefaultCase
public static final TagType CatchClause
public static final TagType Empty
public static final TagType Program
public static TagType[] values()
for (TagType c : TagType.values()) System.out.println(c);
public static TagType 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