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