public enum MembershipStateCode extends Enum<MembershipStateCode>
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="blocked"/>
<enumeration value="non-member"/>
<enumeration value="awaiting-confirmation"/>
<enumeration value="awaiting-parent-group-confirmation"/>
<enumeration value="member"/>
<enumeration value="moderator"/>
<enumeration value="manager"/>
<enumeration value="owner"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AWAITING_CONFIRMATION |
AWAITING_PARENT_GROUP_CONFIRMATION |
BLOCKED |
MANAGER |
MEMBER |
MODERATOR |
NON_MEMBER |
OWNER |
| Modifier and Type | Method and Description |
|---|---|
static MembershipStateCode |
fromValue(String v) |
String |
value() |
static MembershipStateCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MembershipStateCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MembershipStateCode BLOCKED
public static final MembershipStateCode NON_MEMBER
public static final MembershipStateCode AWAITING_CONFIRMATION
public static final MembershipStateCode AWAITING_PARENT_GROUP_CONFIRMATION
public static final MembershipStateCode MEMBER
public static final MembershipStateCode MODERATOR
public static final MembershipStateCode MANAGER
public static final MembershipStateCode OWNER
public static MembershipStateCode[] values()
for (MembershipStateCode c : MembershipStateCode.values()) System.out.println(c);
public static MembershipStateCode 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 MembershipStateCode fromValue(String v)
Apache Camel