Package org.n52.svalbard.encode
Enum XmlBeansEncodingFlags
- java.lang.Object
-
- java.lang.Enum<XmlBeansEncodingFlags>
-
- org.n52.svalbard.encode.XmlBeansEncodingFlags
-
- All Implemented Interfaces:
Serializable,Comparable<XmlBeansEncodingFlags>
public enum XmlBeansEncodingFlags extends Enum<XmlBeansEncodingFlags>
TODO JavaDoc
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENTENCODEENCODE_OWS_EXCEPTION_ONLYEXIST_FOI_IN_DOCFOR_OBSERVATIONGMLIDPROPERTY_TYPEREFERENCEDTYPE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XmlBeansEncodingFlagsvalueOf(String name)Returns the enum constant of this type with the specified name.static XmlBeansEncodingFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT
public static final XmlBeansEncodingFlags DOCUMENT
-
PROPERTY_TYPE
public static final XmlBeansEncodingFlags PROPERTY_TYPE
-
TYPE
public static final XmlBeansEncodingFlags TYPE
-
REFERENCED
public static final XmlBeansEncodingFlags REFERENCED
-
ENCODE
public static final XmlBeansEncodingFlags ENCODE
-
GMLID
public static final XmlBeansEncodingFlags GMLID
-
FOR_OBSERVATION
public static final XmlBeansEncodingFlags FOR_OBSERVATION
-
EXIST_FOI_IN_DOC
public static final XmlBeansEncodingFlags EXIST_FOI_IN_DOC
-
ENCODE_OWS_EXCEPTION_ONLY
public static final XmlBeansEncodingFlags ENCODE_OWS_EXCEPTION_ONLY
-
-
Method Detail
-
values
public static XmlBeansEncodingFlags[] 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 (XmlBeansEncodingFlags c : XmlBeansEncodingFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XmlBeansEncodingFlags 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 nameNullPointerException- if the argument is null
-
-