public static enum S3Service.StorageClass extends Enum<S3Service.StorageClass>
| Enum Constant and Description |
|---|
GLACIER |
REDUCED_REDUNDANCY |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static S3Service.StorageClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3Service.StorageClass |
valueOfIgnoreCase(String s,
S3Service.StorageClass def) |
static S3Service.StorageClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3Service.StorageClass STANDARD
public static final S3Service.StorageClass REDUCED_REDUNDANCY
public static final S3Service.StorageClass GLACIER
public static S3Service.StorageClass[] values()
for (S3Service.StorageClass c : S3Service.StorageClass.values()) System.out.println(c);
public static S3Service.StorageClass 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 static S3Service.StorageClass valueOfIgnoreCase(String s, S3Service.StorageClass def)
Copyright © 2013–2017 OSGL (Open Source General Library). All rights reserved.