enum ServiceNameFactory extends java.lang.Enum<ServiceNameFactory>
Modifier and Type | Method and Description |
---|---|
(package private) static java.lang.String |
getServiceName(java.lang.String httpClientName)
Returns the serviceName config for the specified service client, or null
if no explicit config is found.
|
(package private) static java.lang.String |
getServiceNameInRegionMetadata(java.lang.String httpClientName)
Returns the regionMetadataServiceName config for the specified service
client, or null if no explicit config is found.
|
static ServiceNameFactory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNameFactory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static ServiceNameFactory[] values()
for (ServiceNameFactory c : ServiceNameFactory.values()) System.out.println(c);
public static ServiceNameFactory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullstatic java.lang.String getServiceName(java.lang.String httpClientName)
static java.lang.String getServiceNameInRegionMetadata(java.lang.String httpClientName)