| Enum Constant and Description |
|---|
cpp |
java |
not_specified |
py |
| Modifier and Type | Method and Description |
|---|---|
static ImplLang |
fromString(java.lang.String implLang)
Get enum out of string (also checks handles invalid string).
|
static ImplLang |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImplLang[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImplLang java
public static final ImplLang cpp
public static final ImplLang py
public static final ImplLang not_specified
public static ImplLang[] values()
for (ImplLang c : ImplLang.values()) System.out.println(c);
public static ImplLang 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 ImplLang fromString(java.lang.String implLang)
implLang -