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