public enum PlatformType extends java.lang.Enum<PlatformType>
| Modifier and Type | Class and Description |
|---|---|
static class |
PlatformType.Serializer
For internal use only.
|
| Enum Constant and Description |
|---|
API
The content was viewed from an API client.
|
DESKTOP
The content was viewed on a desktop client.
|
MOBILE
The content was viewed on a mobile client.
|
MOBILE_ANDROID
The content was viewed on a mobile android client.
|
MOBILE_IOS
The content was viewed on a mobile iOS client.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
UNKNOWN
The content was viewed on an unknown platform.
|
WEB
The content was viewed on the web.
|
| Modifier and Type | Method and Description |
|---|---|
static PlatformType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlatformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformType WEB
public static final PlatformType DESKTOP
public static final PlatformType MOBILE_IOS
public static final PlatformType MOBILE_ANDROID
public static final PlatformType API
public static final PlatformType UNKNOWN
public static final PlatformType MOBILE
public static final PlatformType 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 PlatformType[] values()
for (PlatformType c : PlatformType.values()) System.out.println(c);
public static PlatformType 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