Serializable
, Comparable<Dimensions>
public enum Dimensions extends Enum<Dimensions>
Enum Constant | Description |
---|---|
Host |
Host used for per-host level metrics with a single metric namespace.
|
JVM |
JVM used for per-JVM level metrics with a single metric namespace.
|
MetricType |
Type of metric such as HttpRequestTime, ClientExecuteTime, etc.
|
RequestType |
Type of request such as PutItemRequest, GetMetricStatisticsRequest,
etc.
|
Modifier and Type | Method | Description |
---|---|---|
static Dimensions |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Dimensions[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dimensions MetricType
public static final Dimensions RequestType
public static final Dimensions Host
public static final Dimensions JVM
public static Dimensions[] values()
for (Dimensions c : Dimensions.values()) System.out.println(c);
public static Dimensions 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 nullCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.