public static enum ListFilesContinueError.Tag extends Enum<ListFilesContinueError.Tag>
ListFilesContinueError
.Enum Constant and Description |
---|
INVALID_CURSOR
ListFilesContinueArg.getCursor() is invalid. |
OTHER
Catch-all used for unknown tag values returned by the Dropbox
servers.
|
USER_ERROR
User account had a problem.
|
Modifier and Type | Method and Description |
---|---|
static ListFilesContinueError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListFilesContinueError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListFilesContinueError.Tag USER_ERROR
public static final ListFilesContinueError.Tag INVALID_CURSOR
ListFilesContinueArg.getCursor()
is invalid.public static final ListFilesContinueError.Tag OTHER
Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.
public static ListFilesContinueError.Tag[] values()
for (ListFilesContinueError.Tag c : ListFilesContinueError.Tag.values()) System.out.println(c);
public static ListFilesContinueError.Tag 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 null