public enum ResponseTypeType extends Enum<ResponseTypeType>
Java class for ResponseTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ResponseTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Unknown"/>
<enumeration value="Organizer"/>
<enumeration value="Tentative"/>
<enumeration value="Accept"/>
<enumeration value="Decline"/>
<enumeration value="NoResponseReceived"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACCEPT |
DECLINE |
NO_RESPONSE_RECEIVED |
ORGANIZER |
TENTATIVE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ResponseTypeType |
fromValue(String v) |
String |
value() |
static ResponseTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseTypeType UNKNOWN
public static final ResponseTypeType ORGANIZER
public static final ResponseTypeType TENTATIVE
public static final ResponseTypeType ACCEPT
public static final ResponseTypeType DECLINE
public static final ResponseTypeType NO_RESPONSE_RECEIVED
public static ResponseTypeType[] values()
for (ResponseTypeType c : ResponseTypeType.values()) System.out.println(c);
public static ResponseTypeType 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 ResponseTypeType fromValue(String v)
Copyright © 2014 Jasig. All Rights Reserved.