org.gcube.contentmanagement.timeseries.geotools.utils
Enum FeaturesBag.feature

java.lang.Object
  extended by java.lang.Enum<FeaturesBag.feature>
      extended by org.gcube.contentmanagement.timeseries.geotools.utils.FeaturesBag.feature
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FeaturesBag.feature>
Enclosing class:
FeaturesBag

public static enum FeaturesBag.feature
extends java.lang.Enum<FeaturesBag.feature>


Enum Constant Summary
placeColumnName
           
quantitiesColumnName
           
speciesColumnName
           
timeSeriesTableName
           
 
Method Summary
static FeaturesBag.feature valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FeaturesBag.feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

timeSeriesTableName

public static final FeaturesBag.feature timeSeriesTableName

speciesColumnName

public static final FeaturesBag.feature speciesColumnName

placeColumnName

public static final FeaturesBag.feature placeColumnName

quantitiesColumnName

public static final FeaturesBag.feature quantitiesColumnName
Method Detail

values

public static FeaturesBag.feature[] 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 (FeaturesBag.feature c : FeaturesBag.feature.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FeaturesBag.feature valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null