Package org.opennms.core.utils
Enum TimeSeries.Strategy
- java.lang.Object
-
- java.lang.Enum<TimeSeries.Strategy>
-
- org.opennms.core.utils.TimeSeries.Strategy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimeSeries.Strategy>
- Enclosing class:
- TimeSeries
public static enum TimeSeries.Strategy extends java.lang.Enum<TimeSeries.Strategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVALUATE
INTEGRATION
NEWTS
RRD
TCP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescr()
java.lang.String
getName()
static TimeSeries.Strategy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimeSeries.Strategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RRD
public static final TimeSeries.Strategy RRD
-
NEWTS
public static final TimeSeries.Strategy NEWTS
-
EVALUATE
public static final TimeSeries.Strategy EVALUATE
-
TCP
public static final TimeSeries.Strategy TCP
-
INTEGRATION
public static final TimeSeries.Strategy INTEGRATION
-
-
Method Detail
-
values
public static TimeSeries.Strategy[] 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 (TimeSeries.Strategy c : TimeSeries.Strategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeSeries.Strategy 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 namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
getDescr
public java.lang.String getDescr()
-
-