Package odata.msgraph.client.beta.enums
Enum RemoteAction
- java.lang.Object
-
- java.lang.Enum<RemoteAction>
-
- odata.msgraph.client.beta.enums.RemoteAction
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<RemoteAction>
public enum RemoteAction extends Enum<RemoteAction> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static RemoteActionvalueOf(String name)Returns the enum constant of this type with the specified name.static RemoteAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final RemoteAction UNKNOWN
-
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
-
REMOTE_LOCK
public static final RemoteAction REMOTE_LOCK
-
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
-
REBOOT_NOW
public static final RemoteAction REBOOT_NOW
-
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
-
QUICK_SCAN
public static final RemoteAction QUICK_SCAN
-
FULL_SCAN
public static final RemoteAction FULL_SCAN
-
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
-
SHUT_DOWN
public static final RemoteAction SHUT_DOWN
-
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 nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-