public static enum TranslatorMode.DotsPerCell extends Enum<TranslatorMode.DotsPerCell>
Enum Constant and Description |
---|
EIGHT
Defines 8-dot braille.
|
SIX
Defines 6-dot braille.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static TranslatorMode.DotsPerCell |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TranslatorMode.DotsPerCell[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TranslatorMode.DotsPerCell SIX
public static final TranslatorMode.DotsPerCell EIGHT
public static TranslatorMode.DotsPerCell[] values()
for (TranslatorMode.DotsPerCell c : TranslatorMode.DotsPerCell.values()) System.out.println(c);
public static TranslatorMode.DotsPerCell 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 String toString()
toString
in class Enum<TranslatorMode.DotsPerCell>