public enum ConsolFun extends Enum<ConsolFun>
Enum Constant and Description |
---|
AVERAGE
The average of the data points is stored.
|
FIRST
The fist data point is used.
|
LAST
The last data point is used.
|
MAX
The largest of the data points is stored.
|
MIN
The smallest of the data points is stored.
|
TOTAL
The total of the data points is stored.
|
Modifier and Type | Method and Description |
---|---|
abstract Variable |
getVariable() |
static ConsolFun |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsolFun[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsolFun AVERAGE
public static final ConsolFun MIN
public static final ConsolFun MAX
public static final ConsolFun LAST
public static final ConsolFun FIRST
public static final ConsolFun TOTAL
public static ConsolFun[] values()
for (ConsolFun c : ConsolFun.values()) System.out.println(c);
public static ConsolFun valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract Variable getVariable()
© 2018 The RRD4J Authors. © 2001-2005 Sasa Markovic and Ciaran Treanor. © 2018 The OpenNMS Group, Inc.