public static enum Window.Direction extends Enum<Window.Direction>
| Enum Constant and Description |
|---|
NORTHEAST |
NORTHWEST |
SOUTHEAST |
SOUTHWEST |
| Modifier and Type | Method and Description |
|---|---|
static Window.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Window.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Window.Direction NORTHEAST
public static final Window.Direction SOUTHEAST
public static final Window.Direction SOUTHWEST
public static final Window.Direction NORTHWEST
public static Window.Direction[] values()
for (Window.Direction c : Window.Direction.values()) System.out.println(c);
public static Window.Direction 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 © 2018. All rights reserved.