Enum DeviceType
- java.lang.Object
-
- java.lang.Enum<DeviceType>
-
- com.blackberry.workspaces.sdk.api.enums.DeviceType
-
- All Implemented Interfaces:
Serializable
,Comparable<DeviceType>
public enum DeviceType extends Enum<DeviceType>
An enum of device type values
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROID_APP
AndroidBLACKBERRY_APP
BlackBerryBROWSER
BrowserCHROME_EXTENSION
Chrome ExtensionCIFS
CIFSCMIS
CMISGOOGLE_DRIVE
Google driveIOS_APP
iOSMAC
MacOFFICE_ONLINE
Office onlineONE_DRIVE
One DriveSALESFORCE_PLUGIN
SalesforceSDK
SDKSHAREPOINT
SharepointSRE
SRE - used for WOPISYNC
SyncUPLOADER
UploaderWINDOWS_PLUGIN
Windows plugin
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeviceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DeviceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS_PLUGIN
public static final DeviceType WINDOWS_PLUGIN
Windows plugin
-
UPLOADER
public static final DeviceType UPLOADER
Uploader
-
IOS_APP
public static final DeviceType IOS_APP
iOS
-
BLACKBERRY_APP
public static final DeviceType BLACKBERRY_APP
BlackBerry
-
ANDROID_APP
public static final DeviceType ANDROID_APP
Android
-
BROWSER
public static final DeviceType BROWSER
Browser
-
SYNC
public static final DeviceType SYNC
Sync
-
SHAREPOINT
public static final DeviceType SHAREPOINT
Sharepoint
-
SRE
public static final DeviceType SRE
SRE - used for WOPI
-
MAC
public static final DeviceType MAC
Mac
-
CIFS
public static final DeviceType CIFS
CIFS
-
GOOGLE_DRIVE
public static final DeviceType GOOGLE_DRIVE
Google drive
-
SALESFORCE_PLUGIN
public static final DeviceType SALESFORCE_PLUGIN
Salesforce
-
CMIS
public static final DeviceType CMIS
CMIS
-
ONE_DRIVE
public static final DeviceType ONE_DRIVE
One Drive
-
OFFICE_ONLINE
public static final DeviceType OFFICE_ONLINE
Office online
-
SDK
public static final DeviceType SDK
SDK
-
CHROME_EXTENSION
public static final DeviceType CHROME_EXTENSION
Chrome Extension
-
-
Method Detail
-
values
public static DeviceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeviceType c : DeviceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-