public enum S3ClientType extends Enum<S3ClientType>
S3AsyncClient| Enum Constant and Description |
|---|
CRT_BASED |
JAVA_BASED |
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static S3ClientType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3ClientType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3ClientType CRT_BASED
public static final S3ClientType JAVA_BASED
public static final S3ClientType OTHER
public static S3ClientType[] values()
for (S3ClientType c : S3ClientType.values()) System.out.println(c);
public static S3ClientType 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 nullCopyright © 2023. All rights reserved.