Package odata.msgraph.client.beta.enums
Enum ManagedDeviceRemoteAction
- java.lang.Object
-
- java.lang.Enum<ManagedDeviceRemoteAction>
-
- odata.msgraph.client.beta.enums.ManagedDeviceRemoteAction
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ManagedDeviceRemoteAction>
public enum ManagedDeviceRemoteAction extends Enum<ManagedDeviceRemoteAction> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATE_DEVICE_ESIMCOLLECT_DIAGNOSTICSCUSTOM_TEXT_NOTIFICATIONDELETEDEPROVISIONDISABLEFULL_SCANMOVE_DEVICE_TO_ORGANIZATIONAL_UNITQUICK_SCANREBOOT_NOWREENABLERETIRESET_DEVICE_NAMESIGNATURE_UPDATESYNC_DEVICEWIPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ManagedDeviceRemoteActionvalueOf(String name)Returns the enum constant of this type with the specified name.static ManagedDeviceRemoteAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RETIRE
public static final ManagedDeviceRemoteAction RETIRE
-
DELETE
public static final ManagedDeviceRemoteAction DELETE
-
FULL_SCAN
public static final ManagedDeviceRemoteAction FULL_SCAN
-
QUICK_SCAN
public static final ManagedDeviceRemoteAction QUICK_SCAN
-
SIGNATURE_UPDATE
public static final ManagedDeviceRemoteAction SIGNATURE_UPDATE
-
WIPE
public static final ManagedDeviceRemoteAction WIPE
-
CUSTOM_TEXT_NOTIFICATION
public static final ManagedDeviceRemoteAction CUSTOM_TEXT_NOTIFICATION
-
REBOOT_NOW
public static final ManagedDeviceRemoteAction REBOOT_NOW
-
SET_DEVICE_NAME
public static final ManagedDeviceRemoteAction SET_DEVICE_NAME
-
SYNC_DEVICE
public static final ManagedDeviceRemoteAction SYNC_DEVICE
-
DEPROVISION
public static final ManagedDeviceRemoteAction DEPROVISION
-
DISABLE
public static final ManagedDeviceRemoteAction DISABLE
-
REENABLE
public static final ManagedDeviceRemoteAction REENABLE
-
MOVE_DEVICE_TO_ORGANIZATIONAL_UNIT
public static final ManagedDeviceRemoteAction MOVE_DEVICE_TO_ORGANIZATIONAL_UNIT
-
ACTIVATE_DEVICE_ESIM
public static final ManagedDeviceRemoteAction ACTIVATE_DEVICE_ESIM
-
COLLECT_DIAGNOSTICS
public static final ManagedDeviceRemoteAction COLLECT_DIAGNOSTICS
-
-
Method Detail
-
values
public static ManagedDeviceRemoteAction[] 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 (ManagedDeviceRemoteAction c : ManagedDeviceRemoteAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedDeviceRemoteAction 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
-
-