public enum LookUpPropertiesError extends java.lang.Enum<LookUpPropertiesError>
Modifier and Type | Class and Description |
---|---|
static class |
LookUpPropertiesError.Serializer
For internal use only.
|
Enum Constant and Description |
---|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
PROPERTY_GROUP_NOT_FOUND
No property group was found.
|
Modifier and Type | Method and Description |
---|---|
static LookUpPropertiesError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LookUpPropertiesError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookUpPropertiesError PROPERTY_GROUP_NOT_FOUND
public static final LookUpPropertiesError 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 LookUpPropertiesError[] values()
for (LookUpPropertiesError c : LookUpPropertiesError.values()) System.out.println(c);
public static LookUpPropertiesError 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