public enum Dimensions extends Enum<Dimensions>
| Enum Constant and Description |
|---|
MetricType
Type of metric such as HttpRequestTime, ClientExecuteTime, etc.
|
RequestType
Type of request such as PutItemRequest, GetMetricStatisticsRequest,
etc.
|
| Modifier and Type | Method and 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 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 © 2013 Amazon Web Services, Inc. All Rights Reserved.