Enum RemoteAction

    • Enum Constant Detail

      • FACTORY_RESET

        public static final RemoteAction FACTORY_RESET
      • REMOVE_COMPANY_DATA

        public static final RemoteAction REMOVE_COMPANY_DATA
      • RESET_PASSCODE

        public static final RemoteAction RESET_PASSCODE
      • ENABLE_LOST_MODE

        public static final RemoteAction ENABLE_LOST_MODE
      • DISABLE_LOST_MODE

        public static final RemoteAction DISABLE_LOST_MODE
      • LOCATE_DEVICE

        public static final RemoteAction LOCATE_DEVICE
      • RECOVER_PASSCODE

        public static final RemoteAction RECOVER_PASSCODE
      • CLEAN_WINDOWS_DEVICE

        public static final RemoteAction CLEAN_WINDOWS_DEVICE
      • LOGOUT_SHARED_APPLE_DEVICE_ACTIVE_USER

        public static final RemoteAction LOGOUT_SHARED_APPLE_DEVICE_ACTIVE_USER
      • WINDOWS_DEFENDER_UPDATE_SIGNATURES

        public static final RemoteAction WINDOWS_DEFENDER_UPDATE_SIGNATURES
      • FACTORY_RESET_KEEP_ENROLLMENT_DATA

        public static final RemoteAction FACTORY_RESET_KEEP_ENROLLMENT_DATA
      • UPDATE_DEVICE_ACCOUNT

        public static final RemoteAction UPDATE_DEVICE_ACCOUNT
      • AUTOMATIC_REDEPLOYMENT

        public static final RemoteAction AUTOMATIC_REDEPLOYMENT
      • ROTATE_BIT_LOCKER_KEYS

        public static final RemoteAction ROTATE_BIT_LOCKER_KEYS
      • ROTATE_FILE_VAULT_KEY

        public static final RemoteAction ROTATE_FILE_VAULT_KEY
      • GET_FILE_VAULT_KEY

        public static final RemoteAction GET_FILE_VAULT_KEY
      • SET_DEVICE_NAME

        public static final RemoteAction SET_DEVICE_NAME
      • ACTIVATE_DEVICE_ESIM

        public static final RemoteAction ACTIVATE_DEVICE_ESIM
    • Method Detail

      • values

        public static RemoteAction[] 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 (RemoteAction c : RemoteAction.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RemoteAction 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
      • enumName

        public String enumName()
        Specified by:
        enumName in interface com.github.davidmoten.odata.client.Enum
      • enumValue

        public String enumValue()
        Specified by:
        enumValue in interface com.github.davidmoten.odata.client.Enum