public enum SymbolType extends Enum<SymbolType>
| Enum Constant and Description |
|---|
CATCH_VARIABLE |
FOREACH_VARIABLE |
NAMED_PARAMETER |
OBJECT_INITIALIZER |
PARAMETER_DECLARATION |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLocal() |
static SymbolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolType CATCH_VARIABLE
public static final SymbolType OBJECT_INITIALIZER
public static final SymbolType NAMED_PARAMETER
public static final SymbolType PARAMETER_DECLARATION
public static final SymbolType FOREACH_VARIABLE
public static SymbolType[] values()
for (SymbolType c : SymbolType.values()) System.out.println(c);
public static SymbolType 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 isLocal()
Copyright © 2019. All rights reserved.