Package odata.msgraph.client.beta.enums
Enum ManagementState
- java.lang.Object
-
- java.lang.Enum<ManagementState>
-
- odata.msgraph.client.beta.enums.ManagementState
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ManagementState>
public enum ManagementState extends Enum<ManagementState> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE_PENDINGDISCOVEREDMANAGEDRETIRE_CANCELEDRETIRE_FAILEDRETIRE_ISSUEDRETIRE_PENDINGUNHEALTHYWIPE_CANCELEDWIPE_FAILEDWIPE_ISSUEDWIPE_PENDING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ManagementStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ManagementState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MANAGED
public static final ManagementState MANAGED
-
RETIRE_PENDING
public static final ManagementState RETIRE_PENDING
-
RETIRE_FAILED
public static final ManagementState RETIRE_FAILED
-
WIPE_PENDING
public static final ManagementState WIPE_PENDING
-
WIPE_FAILED
public static final ManagementState WIPE_FAILED
-
UNHEALTHY
public static final ManagementState UNHEALTHY
-
DELETE_PENDING
public static final ManagementState DELETE_PENDING
-
RETIRE_ISSUED
public static final ManagementState RETIRE_ISSUED
-
WIPE_ISSUED
public static final ManagementState WIPE_ISSUED
-
WIPE_CANCELED
public static final ManagementState WIPE_CANCELED
-
RETIRE_CANCELED
public static final ManagementState RETIRE_CANCELED
-
DISCOVERED
public static final ManagementState DISCOVERED
-
-
Method Detail
-
values
public static ManagementState[] 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 (ManagementState c : ManagementState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagementState 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
-
-