public static enum DbxFileStatus.PendingOperation extends java.lang.Enum<DbxFileStatus.PendingOperation>
Enum Constant and Description |
---|
DOWNLOAD
The file is currently being downloaded.
|
NONE
The file isn't currently being uploaded or downloaded.
|
UPLOAD
The file is currently being uploaded.
|
Modifier and Type | Method and Description |
---|---|
static DbxFileStatus.PendingOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbxFileStatus.PendingOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbxFileStatus.PendingOperation NONE
public static final DbxFileStatus.PendingOperation UPLOAD
public static final DbxFileStatus.PendingOperation DOWNLOAD
public static DbxFileStatus.PendingOperation[] values()
for (DbxFileStatus.PendingOperation c : DbxFileStatus.PendingOperation.values()) System.out.println(c);
public static DbxFileStatus.PendingOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null