public enum DropDownPosition extends Enum<DropDownPosition>
ComboBox widget.
The component uses it define how to display it. By default AUTO is applied.| Enum Constant and Description |
|---|
ABOVE
The list is always displayed above the box
|
AUTO
The list will be displayed above the box or under it according to many conditions detected
automatically.
|
UNDER
The list is always displayed under the box
|
| Modifier and Type | Method and Description |
|---|---|
static DropDownPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropDownPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropDownPosition AUTO
public static final DropDownPosition ABOVE
public static final DropDownPosition UNDER
public static DropDownPosition[] values()
for (DropDownPosition c : DropDownPosition.values()) System.out.println(c);
public static DropDownPosition 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 © 2008–2013. All rights reserved.