Enum DeviceType

    • 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
      • SHAREPOINT

        public static final DeviceType SHAREPOINT
        Sharepoint
      • SRE

        public static final DeviceType SRE
        SRE - used for WOPI
      • GOOGLE_DRIVE

        public static final DeviceType GOOGLE_DRIVE
        Google drive
      • SALESFORCE_PLUGIN

        public static final DeviceType SALESFORCE_PLUGIN
        Salesforce
      • ONE_DRIVE

        public static final DeviceType ONE_DRIVE
        One Drive
      • OFFICE_ONLINE

        public static final DeviceType OFFICE_ONLINE
        Office online
      • 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 name
        NullPointerException - if the argument is null