public static enum Group.Field extends Enum<Group.Field>
| Enum Constant and Description |
|---|
DESCRIPTION
Description of group Optional.
|
ID
Unique ID for this group Required.
|
TITLE
Title of group Required.
|
VOOT_MEMBERSHIP_ROLE
VOOT compliance
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
emit the field as a json element.
|
static Group.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Group.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.Field ID
public static final Group.Field TITLE
public static final Group.Field DESCRIPTION
public static final Group.Field VOOT_MEMBERSHIP_ROLE
public static Group.Field[] values()
for (Group.Field c : Group.Field.values()) System.out.println(c);
public static Group.Field 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 nullpublic String toString()
toString in class Enum<Group.Field>Copyright © 2007-2012. All Rights Reserved.