Enum MetricGuiHelper.MetricName
- java.lang.Object
-
- java.lang.Enum<MetricGuiHelper.MetricName>
-
- com.attivio.platform.perfmon.model.MetricGuiHelper.MetricName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MetricGuiHelper.MetricName>
- Enclosing class:
- MetricGuiHelper
public static enum MetricGuiHelper.MetricName extends java.lang.Enum<MetricGuiHelper.MetricName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description averageQueryLatency
maxHostCpu
maxNodeMemory
memoryPct
nodeCpu
timeSpentInGc
totalDps
totalQps
uptime
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetricGuiHelper.MetricName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetricGuiHelper.MetricName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
nodeCpu
public static final MetricGuiHelper.MetricName nodeCpu
-
memoryPct
public static final MetricGuiHelper.MetricName memoryPct
-
timeSpentInGc
public static final MetricGuiHelper.MetricName timeSpentInGc
-
uptime
public static final MetricGuiHelper.MetricName uptime
-
maxHostCpu
public static final MetricGuiHelper.MetricName maxHostCpu
-
maxNodeMemory
public static final MetricGuiHelper.MetricName maxNodeMemory
-
totalDps
public static final MetricGuiHelper.MetricName totalDps
-
totalQps
public static final MetricGuiHelper.MetricName totalQps
-
averageQueryLatency
public static final MetricGuiHelper.MetricName averageQueryLatency
-
-
Method Detail
-
values
public static MetricGuiHelper.MetricName[] 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 (MetricGuiHelper.MetricName c : MetricGuiHelper.MetricName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetricGuiHelper.MetricName 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
-
-