public enum MobileClientPlatform extends Enum<MobileClientPlatform>
Enum Constant and Description |
---|
ANDROID
Official Dropbox Android client
|
BLACKBERRY
Official Dropbox Blackberry client
|
IPAD
Official Dropbox iPad client
|
IPHONE
Official Dropbox iPhone client
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
WINDOWS_PHONE
Official Dropbox Windows phone client
|
Modifier and Type | Method and Description |
---|---|
static MobileClientPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MobileClientPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileClientPlatform IPHONE
public static final MobileClientPlatform IPAD
public static final MobileClientPlatform ANDROID
public static final MobileClientPlatform WINDOWS_PHONE
public static final MobileClientPlatform BLACKBERRY
public static final MobileClientPlatform 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 MobileClientPlatform[] values()
for (MobileClientPlatform c : MobileClientPlatform.values()) System.out.println(c);
public static MobileClientPlatform 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