public enum UploadType extends Enum<UploadType>
| Enum Constant and Description |
|---|
CONCATENATED
CONCATENATED is the upload that combines different partial uploads
|
PARTIAL
PARTIAL indicates an upload that is part of a concatenated upload
|
REGULAR
REGULAR indicates a normal upload
|
| Modifier and Type | Method and Description |
|---|---|
static UploadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UploadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadType REGULAR
public static final UploadType PARTIAL
public static final UploadType CONCATENATED
public static UploadType[] values()
for (UploadType c : UploadType.values()) System.out.println(c);
public static UploadType 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 © 2019. All rights reserved.