enum ServiceNameFactory extends Enum<ServiceNameFactory>
Modifier and Type | Method and Description |
---|---|
(package private) static String |
getServiceName(String httpClientName)
Returns the serviceName config for the specified service client, or null if no explicit
config is found.
|
(package private) static String |
getServiceNameInRegionMetadata(String httpClientName)
Returns the regionMetadataServiceName config for the specified service client, or null if no
explicit config is found.
|
static ServiceNameFactory |
valueOf(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(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 nullstatic String getServiceName(String httpClientName)