public enum SettingType extends Enum<SettingType>
| Enum Constant and Description |
|---|
CHOICE |
FILE |
MULTISELECT |
RANGE |
UNBOUNDED |
| Modifier and Type | Method and Description |
|---|---|
static SettingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettingType RANGE
public static final SettingType CHOICE
public static final SettingType UNBOUNDED
public static final SettingType FILE
public static final SettingType MULTISELECT
public static SettingType[] values()
for (SettingType c : SettingType.values()) System.out.println(c);
public static SettingType 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.