Enum MetricGuiHelper.InstanceDimension
- java.lang.Object
-
- java.lang.Enum<MetricGuiHelper.InstanceDimension>
-
- com.attivio.platform.perfmon.model.MetricGuiHelper.InstanceDimension
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MetricGuiHelper.InstanceDimension>
- Enclosing class:
- MetricGuiHelper
public static enum MetricGuiHelper.InstanceDimension extends java.lang.Enum<MetricGuiHelper.InstanceDimension>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description application
baseport
cacheType
component
destination
hostname
networkInterface
nodeset
path
the filesystem pathqueryType
region
signalType
table
webapp
workflow
workflowType
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetricGuiHelper.InstanceDimension
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetricGuiHelper.InstanceDimension[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
nodeset
public static final MetricGuiHelper.InstanceDimension nodeset
-
hostname
public static final MetricGuiHelper.InstanceDimension hostname
-
region
public static final MetricGuiHelper.InstanceDimension region
-
baseport
public static final MetricGuiHelper.InstanceDimension baseport
-
workflow
public static final MetricGuiHelper.InstanceDimension workflow
-
workflowType
public static final MetricGuiHelper.InstanceDimension workflowType
-
component
public static final MetricGuiHelper.InstanceDimension component
-
path
public static final MetricGuiHelper.InstanceDimension path
the filesystem path
-
networkInterface
public static final MetricGuiHelper.InstanceDimension networkInterface
-
cacheType
public static final MetricGuiHelper.InstanceDimension cacheType
-
table
public static final MetricGuiHelper.InstanceDimension table
-
signalType
public static final MetricGuiHelper.InstanceDimension signalType
-
application
public static final MetricGuiHelper.InstanceDimension application
-
queryType
public static final MetricGuiHelper.InstanceDimension queryType
-
webapp
public static final MetricGuiHelper.InstanceDimension webapp
-
destination
public static final MetricGuiHelper.InstanceDimension destination
-
-
Method Detail
-
values
public static MetricGuiHelper.InstanceDimension[] 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.InstanceDimension c : MetricGuiHelper.InstanceDimension.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.InstanceDimension 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
-
-