public enum DotMode extends Enum<DotMode>
Enum Constant and Description |
---|
NO_LEFT_RIGHT |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static DotMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DotMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DotMode NORMAL
public static final DotMode NO_LEFT_RIGHT
public static DotMode[] values()
for (DotMode c : DotMode.values()) System.out.println(c);
public static DotMode 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 nullCopyright © 2015. All Rights Reserved.