public enum GroupCategoryCode extends Enum<GroupCategoryCode>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="alumni"/> <enumeration value="corporate"/> <enumeration value="conference"/> <enumeration value="network"/> <enumeration value="philanthropic"/> <enumeration value="professional"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALUMNI |
CONFERENCE |
CORPORATE |
NETWORK |
OTHER |
PHILANTHROPIC |
PROFESSIONAL |
Modifier and Type | Method and Description |
---|---|
static GroupCategoryCode |
fromValue(String v) |
String |
value() |
static GroupCategoryCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupCategoryCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupCategoryCode ALUMNI
public static final GroupCategoryCode CORPORATE
public static final GroupCategoryCode CONFERENCE
public static final GroupCategoryCode NETWORK
public static final GroupCategoryCode PHILANTHROPIC
public static final GroupCategoryCode PROFESSIONAL
public static final GroupCategoryCode OTHER
public static GroupCategoryCode[] values()
for (GroupCategoryCode c : GroupCategoryCode.values()) System.out.println(c);
public static GroupCategoryCode 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 value()
public static GroupCategoryCode fromValue(String v)
Apache Camel