Serializable, Comparable<SdkSystemSetting>, SystemSettingpublic enum SdkSystemSetting extends Enum<SdkSystemSetting> implements SystemSetting
| Enum Constant | Description |
|---|---|
ASYNC_HTTP_SERVICE_IMPL |
Explicitly identify the default Async HTTP implementation the SDK will use.
|
SYNC_HTTP_SERVICE_IMPL |
Explicitly identify the default synchronous HTTP implementation the SDK will use.
|
| Modifier and Type | Method | Description |
|---|---|---|
String |
defaultValue() |
The default value of the setting (or empty if there is no default).
|
String |
environmentVariable() |
The environment variable of the setting (or null if there is no environment variable for this setting).
|
String |
property() |
The system property of the setting (or null if there is no property for this setting).
|
static SdkSystemSetting |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SdkSystemSetting[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetBooleanValue, getBooleanValueOrThrow, getStringValue, getStringValueOrThrowpublic static final SdkSystemSetting SYNC_HTTP_SERVICE_IMPL
public static final SdkSystemSetting ASYNC_HTTP_SERVICE_IMPL
public static SdkSystemSetting[] values()
for (SdkSystemSetting c : SdkSystemSetting.values()) System.out.println(c);
public static SdkSystemSetting 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 nullpublic String property()
SystemSettingproperty in interface SystemSettingpublic String environmentVariable()
SystemSettingenvironmentVariable in interface SystemSettingpublic String defaultValue()
SystemSettingdefaultValue in interface SystemSettingCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.