Enum AWSMetricTransformerFactory
- java.lang.Object
-
- java.lang.Enum<AWSMetricTransformerFactory>
-
- com.amazonaws.metrics.internal.cloudwatch.spi.AWSMetricTransformerFactory
-
- All Implemented Interfaces:
Serializable
,Comparable<AWSMetricTransformerFactory>
public enum AWSMetricTransformerFactory extends Enum<AWSMetricTransformerFactory>
Service specific metric transformer factory.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DynamoDB
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_METRIC_TRANSFORM_PROVIDER_PACKAGE
static String
transformerPackage
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static String
buildRequestMetricTransformerFQCN(String awsPrefix, String packageName)
Returns the fully qualified class name of the request metric transformer, given the specific AWS prefix.RequestMetricTransformer
getRequestMetricTransformer()
static String
getTransformerPackage()
static void
setTransformerPackage(String transformPackage)
static AWSMetricTransformerFactory
valueOf(String name)
Returns the enum constant of this type with the specified name.static AWSMetricTransformerFactory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DynamoDB
public static final AWSMetricTransformerFactory DynamoDB
-
-
Field Detail
-
DEFAULT_METRIC_TRANSFORM_PROVIDER_PACKAGE
public static final String DEFAULT_METRIC_TRANSFORM_PROVIDER_PACKAGE
- See Also:
- Constant Field Values
-
transformerPackage
public static volatile String transformerPackage
-
-
Method Detail
-
values
public static AWSMetricTransformerFactory[] 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 (AWSMetricTransformerFactory c : AWSMetricTransformerFactory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AWSMetricTransformerFactory valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getTransformerPackage
public static String getTransformerPackage()
-
setTransformerPackage
public static void setTransformerPackage(String transformPackage)
-
buildRequestMetricTransformerFQCN
public static String buildRequestMetricTransformerFQCN(String awsPrefix, String packageName)
Returns the fully qualified class name of the request metric transformer, given the specific AWS prefix.
-
getRequestMetricTransformer
public RequestMetricTransformer getRequestMetricTransformer()
-
-