public static enum Cell.Width extends java.lang.Enum<Cell.Width>
Enum Constant and Description |
---|
LEFT
This cell is the left half of a wide glyph.
|
RIGHT
This cell is the right half of a wide glyph.
|
SINGLE
This cell is an entire glyph on its own.
|
Modifier and Type | Method and Description |
---|---|
static Cell.Width |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cell.Width[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cell.Width SINGLE
public static final Cell.Width LEFT
public static final Cell.Width RIGHT
public static Cell.Width[] values()
for (Cell.Width c : Cell.Width.values()) System.out.println(c);
public static Cell.Width 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 nullCopyright © 2019 Kevin Lamonte. Licensed MIT.