public enum LanguagePathDirection extends Enum<LanguagePathDirection>
Enum Constant and Description |
---|
BOTH |
COMBINATION |
SIMPLEX |
Modifier and Type | Method and Description |
---|---|
static LanguagePathDirection |
getByValue(String value) |
String |
getCode() |
static List<String> |
getCodeList() |
static List<LanguagePathDirection> |
getListWithoutCombination() |
String |
getValue() |
static LanguagePathDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LanguagePathDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LanguagePathDirection BOTH
public static final LanguagePathDirection SIMPLEX
public static final LanguagePathDirection COMBINATION
public static LanguagePathDirection[] values()
for (LanguagePathDirection c : LanguagePathDirection.values()) System.out.println(c);
public static LanguagePathDirection 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 nullpublic static LanguagePathDirection getByValue(String value)
public String getCode()
public String getValue()
public static List<LanguagePathDirection> getListWithoutCombination()