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