|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PreferLevel>
org.ota.shared.PreferLevel
public enum PreferLevel
Used to specify a preference level for something that is or will be requested (e.g. a supplier of a service, a type of service, a form of payment, etc.). Schema fragment(s) for this class:
<xs:simpleType xmlns:ns="http://www.opentravel.org/OTA/2003/05" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="PreferLevelType"> <xs:restriction base="xs:string"> <xs:enumeration value="Only"/> <xs:enumeration value="Unacceptable"/> <xs:enumeration value="Preferred"/> <xs:enumeration value="Required"/> <xs:enumeration value="NoPreference"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
NO_PREFERENCE
Preference level that indicates there is no preference. |
|
ONLY
Preference level that indicates request is only for a specific criterion. |
|
PREFERRED
Preference level that indicates request is preferred for a specific criterion. |
|
REQUIRED
Preference level that indicates request is required for a specific criterion. |
|
UNACCEPTABLE
Preference level that indicates request is unnacceptable for a specific criterion. |
Method Summary | |
---|---|
static PreferLevel |
convert(java.lang.String value)
|
java.lang.String |
toString()
|
static PreferLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PreferLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PreferLevel ONLY
public static final PreferLevel UNACCEPTABLE
public static final PreferLevel PREFERRED
public static final PreferLevel REQUIRED
public static final PreferLevel NO_PREFERENCE
Method Detail |
---|
public static PreferLevel[] values()
for (PreferLevel c : PreferLevel.values()) System.out.println(c);
public static PreferLevel 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<PreferLevel>
public static PreferLevel convert(java.lang.String value)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |