Enum ParameterFactory.EntityType
- java.lang.Object
-
- java.lang.Enum<ParameterFactory.EntityType>
-
- org.n52.series.db.beans.parameter.ParameterFactory.EntityType
-
- All Implemented Interfaces:
Serializable,Comparable<ParameterFactory.EntityType>
- Enclosing class:
- ParameterFactory
public static enum ParameterFactory.EntityType extends Enum<ParameterFactory.EntityType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATASETFEATURELOCATIONOBSERVATIONPHENOMENONPLATFORMPROCEDURE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParameterFactory.EntityTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ParameterFactory.EntityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHENOMENON
public static final ParameterFactory.EntityType PHENOMENON
-
PROCEDURE
public static final ParameterFactory.EntityType PROCEDURE
-
PLATFORM
public static final ParameterFactory.EntityType PLATFORM
-
DATASET
public static final ParameterFactory.EntityType DATASET
-
FEATURE
public static final ParameterFactory.EntityType FEATURE
-
OBSERVATION
public static final ParameterFactory.EntityType OBSERVATION
-
LOCATION
public static final ParameterFactory.EntityType LOCATION
-
-
Method Detail
-
values
public static ParameterFactory.EntityType[] 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 (ParameterFactory.EntityType c : ParameterFactory.EntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParameterFactory.EntityType 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
-
-