public static enum Selector.Location extends Enum<Selector.Location>
Enum Constant and Description |
---|
ABOVE
An enumerator value used for indicating that the selector window will
show up above its parent component.
|
BELOW
An enumerator value used for indicating that the selector window will
show up below its parent component.
|
LEFT
An enumerator value used for indicating that the selector window will
show up to the left of its parent component.
|
RIGHT
An enumerator value used for indicating that the selector window will
show to the right of its parent component.
|
Modifier and Type | Method and Description |
---|---|
static Selector.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selector.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selector.Location ABOVE
public static final Selector.Location BELOW
public static final Selector.Location LEFT
public static final Selector.Location RIGHT
public static Selector.Location[] values()
for (Selector.Location c : Selector.Location.values()) System.out.println(c);
public static Selector.Location 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.