Package odata.msgraph.client.enums
Enum IosUpdatesInstallStatus
- java.lang.Object
-
- java.lang.Enum<IosUpdatesInstallStatus>
-
- odata.msgraph.client.enums.IosUpdatesInstallStatus
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<IosUpdatesInstallStatus>
public enum IosUpdatesInstallStatus extends Enum<IosUpdatesInstallStatus> 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 IosUpdatesInstallStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static IosUpdatesInstallStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEVICE_OS_HIGHER_THAN_DESIRED_OS_VERSION
public static final IosUpdatesInstallStatus DEVICE_OS_HIGHER_THAN_DESIRED_OS_VERSION
-
SHARED_DEVICE_USER_LOGGED_IN_ERROR
public static final IosUpdatesInstallStatus SHARED_DEVICE_USER_LOGGED_IN_ERROR
-
NOT_SUPPORTED_OPERATION
public static final IosUpdatesInstallStatus NOT_SUPPORTED_OPERATION
-
INSTALL_FAILED
public static final IosUpdatesInstallStatus INSTALL_FAILED
-
INSTALL_PHONE_CALL_IN_PROGRESS
public static final IosUpdatesInstallStatus INSTALL_PHONE_CALL_IN_PROGRESS
-
INSTALL_INSUFFICIENT_POWER
public static final IosUpdatesInstallStatus INSTALL_INSUFFICIENT_POWER
-
INSTALL_INSUFFICIENT_SPACE
public static final IosUpdatesInstallStatus INSTALL_INSUFFICIENT_SPACE
-
INSTALLING
public static final IosUpdatesInstallStatus INSTALLING
-
DOWNLOAD_INSUFFICIENT_NETWORK
public static final IosUpdatesInstallStatus DOWNLOAD_INSUFFICIENT_NETWORK
-
DOWNLOAD_INSUFFICIENT_POWER
public static final IosUpdatesInstallStatus DOWNLOAD_INSUFFICIENT_POWER
-
DOWNLOAD_INSUFFICIENT_SPACE
public static final IosUpdatesInstallStatus DOWNLOAD_INSUFFICIENT_SPACE
-
DOWNLOAD_REQUIRES_COMPUTER
public static final IosUpdatesInstallStatus DOWNLOAD_REQUIRES_COMPUTER
-
DOWNLOAD_FAILED
public static final IosUpdatesInstallStatus DOWNLOAD_FAILED
-
DOWNLOADING
public static final IosUpdatesInstallStatus DOWNLOADING
-
SUCCESS
public static final IosUpdatesInstallStatus SUCCESS
-
AVAILABLE
public static final IosUpdatesInstallStatus AVAILABLE
-
IDLE
public static final IosUpdatesInstallStatus IDLE
-
UNKNOWN
public static final IosUpdatesInstallStatus UNKNOWN
-
-
Method Detail
-
values
public static IosUpdatesInstallStatus[] 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 (IosUpdatesInstallStatus c : IosUpdatesInstallStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IosUpdatesInstallStatus 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
-
-