public enum GroupingParameter extends java.lang.Enum<GroupingParameter> implements EnumConverter<GroupingParameter>
| Modifier and Type | Method and Description |
|---|---|
static GroupingParameter |
from(java.lang.String value) |
java.lang.Object |
to(GroupingParameter v) |
static GroupingParameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupingParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupingParameter USER
public static final GroupingParameter LANGUAGE
public static GroupingParameter[] values()
for (GroupingParameter c : GroupingParameter.values()) System.out.println(c);
public static GroupingParameter valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static GroupingParameter from(java.lang.String value)
public java.lang.Object to(GroupingParameter v)
to in interface EnumConverter<GroupingParameter>