public enum DropboxOperation extends Enum<DropboxOperation>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DropboxOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropboxOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropboxOperation put
public static final DropboxOperation del
public static final DropboxOperation search
public static final DropboxOperation get
public static final DropboxOperation move
public static DropboxOperation[] values()
for (DropboxOperation c : DropboxOperation.values()) System.out.println(c);
public static DropboxOperation 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 String toString()
toString in class Enum<DropboxOperation>Apache Camel