public static enum RewordingDictionaryService.Direction extends Enum<RewordingDictionaryService.Direction>
| Enum Constant and Description |
|---|
GENERAL_TO_SPECIAL |
SPECIAL_TO_GENERAL |
| Modifier and Type | Method and Description |
|---|---|
static RewordingDictionaryService.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RewordingDictionaryService.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RewordingDictionaryService.Direction SPECIAL_TO_GENERAL
public static final RewordingDictionaryService.Direction GENERAL_TO_SPECIAL
public static RewordingDictionaryService.Direction[] values()
for (RewordingDictionaryService.Direction c : RewordingDictionaryService.Direction.values()) System.out.println(c);
public static RewordingDictionaryService.Direction 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 null