public enum UdfLanguage extends java.lang.Enum<UdfLanguage>
Enum Constant and Description |
---|
JAVA |
JAVASCRIPT |
Modifier and Type | Method and Description |
---|---|
static UdfLanguage |
parseUdfLanguage(java.lang.String input) |
java.lang.String |
toKey() |
java.lang.String |
toString()
Returns the key of this type as string.
|
static UdfLanguage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UdfLanguage[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final UdfLanguage JAVA
public static final UdfLanguage JAVASCRIPT
public static UdfLanguage parseUdfLanguage(java.lang.String input)
public java.lang.String toKey()
public java.lang.String toString()
toKey()
.toString
in class java.lang.Enum<UdfLanguage>
public static UdfLanguage 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 UdfLanguage[] values()
for (UdfLanguage c : UdfLanguage.values()) System.out.println(c);