public static enum Orientable.Orientation extends Enum<Orientable.Orientation>
| Enum Constant and Description |
|---|
HORIZONTAL
A horizontal orientation, will outline every item from the top-left corner going to the right and down
|
VERTICAL
A vertical orientation, will outline every item from the top-left corner going down and to the right
|
| Modifier and Type | Method and Description |
|---|---|
static Orientable.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Orientable.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientable.Orientation HORIZONTAL
public static final Orientable.Orientation VERTICAL
public static Orientable.Orientation[] values()
for (Orientable.Orientation c : Orientable.Orientation.values()) System.out.println(c);
public static Orientable.Orientation 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 © 2019. All rights reserved.