Package org.n52.shetland.ogc.gml
Enum Aggregation
- java.lang.Object
-
- java.lang.Enum<Aggregation>
-
- org.n52.shetland.ogc.gml.Aggregation
-
- All Implemented Interfaces:
Serializable,Comparable<Aggregation>
public enum Aggregation extends Enum<Aggregation>
Internal representation of the OGC GML Aggregation.- Since:
- 1.0.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregationvalueOf(String name)Returns the enum constant of this type with the specified name.static Aggregation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
set
public static final Aggregation set
-
bag
public static final Aggregation bag
-
sequence
public static final Aggregation sequence
-
array
public static final Aggregation array
-
record
public static final Aggregation record
-
table
public static final Aggregation table
-
-
Method Detail
-
values
public static Aggregation[] 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 (Aggregation c : Aggregation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aggregation 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
-
-