public enum GeneratedLanguageValues extends java.lang.Enum<GeneratedLanguageValues>
List of generation languages.
| Modifier and Type | Method and Description |
|---|---|
static GeneratedLanguageValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneratedLanguageValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneratedLanguageValues _C
COBOL
public static final GeneratedLanguageValues _D
COBOL II, 85, LE
public static GeneratedLanguageValues 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 nullpublic static GeneratedLanguageValues[] values()
for (GeneratedLanguageValues c : GeneratedLanguageValues.values()) System.out.println(c);