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