public static enum Resizable.Dir extends Enum<Resizable.Dir>
Modifier and Type | Method and Description |
---|---|
static Resizable.Dir |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resizable.Dir[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resizable.Dir E
public static final Resizable.Dir N
public static final Resizable.Dir NE
public static final Resizable.Dir NW
public static final Resizable.Dir S
public static final Resizable.Dir SE
public static final Resizable.Dir SW
public static final Resizable.Dir W
public static Resizable.Dir[] values()
for (Resizable.Dir c : Resizable.Dir.values()) System.out.println(c);
public static Resizable.Dir 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 © 2020. All rights reserved.