public enum DropdownListStyle extends Enum<DropdownListStyle>
Enum Constant and Description |
---|
CONTENT |
LARGE |
MEDIUM |
MEGA |
SMALL |
TINY |
Modifier and Type | Method and Description |
---|---|
static DropdownListStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropdownListStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropdownListStyle TINY
public static final DropdownListStyle SMALL
public static final DropdownListStyle MEDIUM
public static final DropdownListStyle LARGE
public static final DropdownListStyle MEGA
public static final DropdownListStyle CONTENT
public static DropdownListStyle[] values()
for (DropdownListStyle c : DropdownListStyle.values()) System.out.println(c);
public static DropdownListStyle 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 © 2015. All rights reserved.