Enum BusinessMetricFeatureId
- java.lang.Object
-
- java.lang.Enum<BusinessMetricFeatureId>
-
- software.amazon.awssdk.core.useragent.BusinessMetricFeatureId
-
- All Implemented Interfaces:
Serializable
,Comparable<BusinessMetricFeatureId>
public enum BusinessMetricFeatureId extends Enum<BusinessMetricFeatureId>
An enum class representing a short form of identity providers to record in the UA string. Unimplemented metrics: I,J,K,M,O,S,U-c,e-[latest] Unsupported metrics (these will never be added): A,H
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
String
value()
static BusinessMetricFeatureId
valueOf(String name)
Returns the enum constant of this type with the specified name.static BusinessMetricFeatureId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WAITER
public static final BusinessMetricFeatureId WAITER
-
PAGINATOR
public static final BusinessMetricFeatureId PAGINATOR
-
RETRY_MODE_LEGACY
public static final BusinessMetricFeatureId RETRY_MODE_LEGACY
-
RETRY_MODE_STANDARD
public static final BusinessMetricFeatureId RETRY_MODE_STANDARD
-
RETRY_MODE_ADAPTIVE
public static final BusinessMetricFeatureId RETRY_MODE_ADAPTIVE
-
S3_TRANSFER
public static final BusinessMetricFeatureId S3_TRANSFER
-
GZIP_REQUEST_COMPRESSION
public static final BusinessMetricFeatureId GZIP_REQUEST_COMPRESSION
-
ENDPOINT_OVERRIDE
public static final BusinessMetricFeatureId ENDPOINT_OVERRIDE
-
ACCOUNT_ID_MODE_PREFERRED
public static final BusinessMetricFeatureId ACCOUNT_ID_MODE_PREFERRED
-
ACCOUNT_ID_MODE_DISABLED
public static final BusinessMetricFeatureId ACCOUNT_ID_MODE_DISABLED
-
ACCOUNT_ID_MODE_REQUIRED
public static final BusinessMetricFeatureId ACCOUNT_ID_MODE_REQUIRED
-
RESOLVED_ACCOUNT_ID
public static final BusinessMetricFeatureId RESOLVED_ACCOUNT_ID
-
DDB_MAPPER
public static final BusinessMetricFeatureId DDB_MAPPER
-
UNKNOWN
public static final BusinessMetricFeatureId UNKNOWN
-
-
Method Detail
-
values
public static BusinessMetricFeatureId[] 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 (BusinessMetricFeatureId c : BusinessMetricFeatureId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BusinessMetricFeatureId 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
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<BusinessMetricFeatureId>
-
-