public enum MetaLanguageStatements extends Enum<MetaLanguageStatements>
| Enum Constant and Description |
|---|
BooleanRange |
ByteRange |
CharRange |
DoubleRange |
FloatRange |
IntCountRange |
IntIncrementRange |
LongRange |
ShortRange |
| Modifier and Type | Method and Description |
|---|---|
static MetaLanguageStatements |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetaLanguageStatements[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaLanguageStatements ByteRange
public static final MetaLanguageStatements ShortRange
public static final MetaLanguageStatements IntCountRange
public static final MetaLanguageStatements IntIncrementRange
public static final MetaLanguageStatements LongRange
public static final MetaLanguageStatements FloatRange
public static final MetaLanguageStatements DoubleRange
public static final MetaLanguageStatements BooleanRange
public static final MetaLanguageStatements CharRange
public static MetaLanguageStatements[] values()
for (MetaLanguageStatements c : MetaLanguageStatements.values()) System.out.println(c);
public static MetaLanguageStatements 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 nullCopyright © 2015. All rights reserved.