public static enum DynamicSqlSite.Status extends Enum<DynamicSqlSite.Status>
| Enum Constant and Description |
|---|
PARSE_ERROR |
RESOLVED |
UNRESOLVED |
| Modifier and Type | Method and Description |
|---|---|
static DynamicSqlSite.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicSqlSite.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicSqlSite.Status RESOLVED
public static final DynamicSqlSite.Status UNRESOLVED
public static final DynamicSqlSite.Status PARSE_ERROR
public static DynamicSqlSite.Status[] values()
for (DynamicSqlSite.Status c : DynamicSqlSite.Status.values()) System.out.println(c);
public static DynamicSqlSite.Status 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