Enum WaterMLConstants.InterpolationType
- java.lang.Object
-
- java.lang.Enum<WaterMLConstants.InterpolationType>
-
- org.n52.shetland.ogc.om.series.wml.WaterMLConstants.InterpolationType
-
- All Implemented Interfaces:
Serializable,Comparable<WaterMLConstants.InterpolationType>,AbstractInterpolationType
- Enclosing interface:
- WaterMLConstants
public static enum WaterMLConstants.InterpolationType extends Enum<WaterMLConstants.InterpolationType> implements AbstractInterpolationType
Hold allowed values for elementinterpolationType. See/req/xsd-measurement-timeseries-tvp/interpolation-type.- Since:
- 1.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AveragePrecAverage in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/AveragePrecAverageSuccAverage in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/AverageSuccConstPrecConstant in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/ConstPrecConstSuccConstant in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/ConstSuccContinuousContinuous/Instantaneous http://www.opengis.net/def/waterml/2.0/interpolationType/ContinuousDiscontinuoushttp://www.opengis.net/def/waterml/2.0/interpolationType/ DiscontinuousInstantTotalInstantaneous total http://www.opengis.net/def/waterml/2.0/interpolationType/InstantTotalMaxPrecMaximum in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MaxPrecMaxSuccMaximum in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MaxSuccMinPrecMinimum in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MinPrecMinSuccMinimum in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MinSuccStatisticalStatistical http://www.opengis.net/def/waterml/2.0/interpolationType/StatisticalTotalPrecPreceding total http://www.opengis.net/def/waterml/2.0/interpolationType/TotalPrecTotalSuccSucceeding total http://www.opengis.net/def/waterml/2.0/interpolationType/TotalSucc
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WaterMLConstants.InterpolationTypefrom(String v)StringgetIdentifier()StringgetTitle()static WaterMLConstants.InterpolationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static WaterMLConstants.InterpolationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Continuous
public static final WaterMLConstants.InterpolationType Continuous
Continuous/Instantaneous http://www.opengis.net/def/waterml/2.0/interpolationType/Continuous
-
Discontinuous
public static final WaterMLConstants.InterpolationType Discontinuous
http://www.opengis.net/def/waterml/2.0/interpolationType/ Discontinuous
-
InstantTotal
public static final WaterMLConstants.InterpolationType InstantTotal
Instantaneous total http://www.opengis.net/def/waterml/2.0/interpolationType/InstantTotal
-
AveragePrec
public static final WaterMLConstants.InterpolationType AveragePrec
Average in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/AveragePrec
-
MaxPrec
public static final WaterMLConstants.InterpolationType MaxPrec
Maximum in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MaxPrec
-
MinPrec
public static final WaterMLConstants.InterpolationType MinPrec
Minimum in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MinPrec
-
TotalPrec
public static final WaterMLConstants.InterpolationType TotalPrec
Preceding total http://www.opengis.net/def/waterml/2.0/interpolationType/TotalPrec
-
AverageSucc
public static final WaterMLConstants.InterpolationType AverageSucc
Average in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/AverageSucc
-
TotalSucc
public static final WaterMLConstants.InterpolationType TotalSucc
Succeeding total http://www.opengis.net/def/waterml/2.0/interpolationType/TotalSucc
-
MinSucc
public static final WaterMLConstants.InterpolationType MinSucc
Minimum in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MinSucc
-
MaxSucc
public static final WaterMLConstants.InterpolationType MaxSucc
Maximum in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/MaxSucc
-
ConstPrec
public static final WaterMLConstants.InterpolationType ConstPrec
Constant in preceding interval http://www.opengis.net/def/waterml/2.0/interpolationType/ConstPrec
-
ConstSucc
public static final WaterMLConstants.InterpolationType ConstSucc
Constant in succeeding interval http://www.opengis.net/def/waterml/2.0/interpolationType/ConstSucc
-
Statistical
public static final WaterMLConstants.InterpolationType Statistical
Statistical http://www.opengis.net/def/waterml/2.0/interpolationType/Statistical
-
-
Method Detail
-
values
public static WaterMLConstants.InterpolationType[] 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 (WaterMLConstants.InterpolationType c : WaterMLConstants.InterpolationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WaterMLConstants.InterpolationType 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
-
getIdentifier
public String getIdentifier()
-
getTitle
public String getTitle()
-
from
public static WaterMLConstants.InterpolationType from(String v)
-
-