public enum StatValueTypes extends java.lang.Enum<StatValueTypes>
| Enum Constant and Description |
|---|
COUNTER
Counter is similar to long, except that they do not get resetted on interval update.
|
DIFFLONG
This is a type used in CPU Counter.
|
DOUBLE
A double value is required
|
INT
An int value is required
|
LONG
A long value is required
|
STRING
String value.
|
| Modifier and Type | Method and Description |
|---|---|
static StatValueTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatValueTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatValueTypes LONG
public static final StatValueTypes INT
public static final StatValueTypes DOUBLE
public static final StatValueTypes STRING
public static final StatValueTypes COUNTER
public static final StatValueTypes DIFFLONG
public static StatValueTypes[] values()
for (StatValueTypes c : StatValueTypes.values()) System.out.println(c);
public static StatValueTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2010-2020 anotheria.net. All Rights Reserved.