Package adams.data.outlier
Enum TimeseriesTimestampCheck.TimestampCondition
- java.lang.Object
-
- java.lang.Enum<TimeseriesTimestampCheck.TimestampCondition>
-
- adams.data.outlier.TimeseriesTimestampCheck.TimestampCondition
-
- All Implemented Interfaces:
Serializable
,Comparable<TimeseriesTimestampCheck.TimestampCondition>
- Enclosing class:
- TimeseriesTimestampCheck
public static enum TimeseriesTimestampCheck.TimestampCondition extends Enum<TimeseriesTimestampCheck.TimestampCondition>
Determines what condition the selected timestamp must satisfy.- Version:
- $Revision: 995 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeseriesTimestampCheck.TimestampCondition
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeseriesTimestampCheck.TimestampCondition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFORE
public static final TimeseriesTimestampCheck.TimestampCondition BEFORE
timestamp must be before.
-
AFTER
public static final TimeseriesTimestampCheck.TimestampCondition AFTER
timestamp must be after.
-
-
Method Detail
-
values
public static TimeseriesTimestampCheck.TimestampCondition[] 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 (TimeseriesTimestampCheck.TimestampCondition c : TimeseriesTimestampCheck.TimestampCondition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeseriesTimestampCheck.TimestampCondition 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
-
-