public enum ExpandDirection extends Enum<ExpandDirection>
Enum Constant and Description |
---|
DOWN
The Expander control opens down.
|
LEFT
The Expander control opens left.
|
RIGHT
The Expander control opens right.
|
UP
The Expander control opens up.
|
Modifier and Type | Method and Description |
---|---|
static ExpandDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpandDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpandDirection DOWN
public static final ExpandDirection UP
public static final ExpandDirection LEFT
public static final ExpandDirection RIGHT
public static ExpandDirection[] values()
for (ExpandDirection c : ExpandDirection.values()) System.out.println(c);
public static ExpandDirection 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 2009-2012 Micro Focus. All Rights Reserved.