|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ListBox.SelectionMode>
de.lessvoid.nifty.controls.ListBox.SelectionMode
public static enum ListBox.SelectionMode
The ListBoxSelectionMode determines how the ListBox handles selections.
Enum Constant Summary | |
---|---|
Disabled
Does not allow any selection at all. |
|
Multiple
Allows multiple items to be selected. |
|
Single
Allows only a single item to be selected. |
Method Summary | |
---|---|
static ListBox.SelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ListBox.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ListBox.SelectionMode Single
public static final ListBox.SelectionMode Multiple
public static final ListBox.SelectionMode Disabled
Method Detail |
---|
public static ListBox.SelectionMode[] values()
for (ListBox.SelectionMode c : ListBox.SelectionMode.values()) System.out.println(c);
public static ListBox.SelectionMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |