Package org.apache.cxf.common.jaxb
Enum JAXBUtils.IdentifierType
- java.lang.Object
- 
- java.lang.Enum<JAXBUtils.IdentifierType>
- 
- org.apache.cxf.common.jaxb.JAXBUtils.IdentifierType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<JAXBUtils.IdentifierType>
 - Enclosing class:
- JAXBUtils
 
 public static enum JAXBUtils.IdentifierType extends Enum<JAXBUtils.IdentifierType> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static JAXBUtils.IdentifierTypevalueOf(String name)Returns the enum constant of this type with the specified name.static JAXBUtils.IdentifierType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CLASSpublic static final JAXBUtils.IdentifierType CLASS 
 - 
INTERFACEpublic static final JAXBUtils.IdentifierType INTERFACE 
 - 
GETTERpublic static final JAXBUtils.IdentifierType GETTER 
 - 
SETTERpublic static final JAXBUtils.IdentifierType SETTER 
 - 
VARIABLEpublic static final JAXBUtils.IdentifierType VARIABLE 
 - 
CONSTANTpublic static final JAXBUtils.IdentifierType CONSTANT 
 
- 
 - 
Method Detail- 
valuespublic static JAXBUtils.IdentifierType[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JAXBUtils.IdentifierType c : JAXBUtils.IdentifierType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static JAXBUtils.IdentifierType valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-