Package org.n52.shetland.ogc.gml
Enum GmlConstants.NilReason
- java.lang.Object
-
- java.lang.Enum<GmlConstants.NilReason>
-
- org.n52.shetland.ogc.gml.GmlConstants.NilReason
-
- All Implemented Interfaces:
Serializable,Comparable<GmlConstants.NilReason>
- Enclosing interface:
- GmlConstants
public static enum GmlConstants.NilReason extends Enum<GmlConstants.NilReason>
inapplicable there is no value missing the correct value is not readily available to the sender of this data. Furthermore, a correct value may not exist template the value will be available later unknown the correct value is not known to, and not computable by, the sender of this data. However, a correct value probably exists withheld the value is not divulged Not supported: other:text other brief explanation, where text is a string of two or more characters with no included spaces- Since:
- 1.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description inapplicablemissingtemplateunknownwithheld
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GmlConstants.NilReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static GmlConstants.NilReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
inapplicable
public static final GmlConstants.NilReason inapplicable
-
missing
public static final GmlConstants.NilReason missing
-
template
public static final GmlConstants.NilReason template
-
unknown
public static final GmlConstants.NilReason unknown
-
withheld
public static final GmlConstants.NilReason withheld
-
-
Method Detail
-
values
public static GmlConstants.NilReason[] 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 (GmlConstants.NilReason c : GmlConstants.NilReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GmlConstants.NilReason 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
-
-