public enum MenuSize extends Enum<MenuSize>
Enum Constant and Description |
---|
ALL
Always show all items.
|
AUTO
Show as many items as the window will allow without being cut off.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns the value of the drop-down menu size.
|
static MenuSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuSize AUTO
public static MenuSize[] values()
for (MenuSize c : MenuSize.values()) System.out.println(c);
public static MenuSize 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 © 2017. All rights reserved.