public enum DsType extends Enum<DsType>
| Enum Constant and Description |
|---|
ABSOLUTEIs for counters which get reset upon reading. |
COUNTERIs for continuous incrementing counters like the ifInOctets counter in a router. |
DERIVEWill store the derivative of the line going from the last to the current value of the data
source. |
GAUGEIs for things like temperatures or number of people in a room or the value of a RedHat share. |
| Modifier and Type | Method and Description |
|---|---|
static DsType | valueOf(String name)Returns the enum constant of this type with the specified name. |
static DsType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final DsType ABSOLUTE
public static final DsType COUNTER
public static final DsType DERIVE
public static final DsType GAUGE
public static DsType 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 static DsType[] values()
for (DsType c : DsType.values()) System.out.println(c);