public enum UploadMode extends Enum<UploadMode>
| Enum Constant and Description |
|---|
APPEND_OBJECT |
PUT_OBJECT |
| Modifier and Type | Method and Description |
|---|---|
static UploadMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UploadMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadMode APPEND_OBJECT
public static final UploadMode PUT_OBJECT
public static UploadMode[] values()
for (UploadMode c : UploadMode.values()) System.out.println(c);
public static UploadMode 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.