Package org.n52.shetland.ogc.swe
Enum SweConstants.SweDataComponentType
- java.lang.Object
-
- java.lang.Enum<SweConstants.SweDataComponentType>
-
- org.n52.shetland.ogc.swe.SweConstants.SweDataComponentType
-
- All Implemented Interfaces:
Serializable,Comparable<SweConstants.SweDataComponentType>
- Enclosing interface:
- SweConstants
public static enum SweConstants.SweDataComponentType extends Enum<SweConstants.SweDataComponentType>
Enum for SWE DataComponent types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BooleanCategoryCategoryRangeCountCountRangeDataArrayDataRecordEnvelopeFieldObservablePropertyPositionQuantityQuantityRangeSimpleDataRecordTextTimeTimeRangeVector
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SweConstants.SweDataComponentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SweConstants.SweDataComponentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DataArray
public static final SweConstants.SweDataComponentType DataArray
-
DataRecord
public static final SweConstants.SweDataComponentType DataRecord
-
SimpleDataRecord
public static final SweConstants.SweDataComponentType SimpleDataRecord
-
Envelope
public static final SweConstants.SweDataComponentType Envelope
-
Field
public static final SweConstants.SweDataComponentType Field
-
Vector
public static final SweConstants.SweDataComponentType Vector
-
Position
public static final SweConstants.SweDataComponentType Position
-
Boolean
public static final SweConstants.SweDataComponentType Boolean
-
Category
public static final SweConstants.SweDataComponentType Category
-
CategoryRange
public static final SweConstants.SweDataComponentType CategoryRange
-
Count
public static final SweConstants.SweDataComponentType Count
-
CountRange
public static final SweConstants.SweDataComponentType CountRange
-
Quantity
public static final SweConstants.SweDataComponentType Quantity
-
QuantityRange
public static final SweConstants.SweDataComponentType QuantityRange
-
Text
public static final SweConstants.SweDataComponentType Text
-
Time
public static final SweConstants.SweDataComponentType Time
-
TimeRange
public static final SweConstants.SweDataComponentType TimeRange
-
ObservableProperty
public static final SweConstants.SweDataComponentType ObservableProperty
-
-
Method Detail
-
values
public static SweConstants.SweDataComponentType[] 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 (SweConstants.SweDataComponentType c : SweConstants.SweDataComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SweConstants.SweDataComponentType 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
-
-