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