Package odata.msgraph.client.beta.enums
Enum ResultantAppStateDetail
- java.lang.Object
-
- java.lang.Enum<ResultantAppStateDetail>
-
- odata.msgraph.client.beta.enums.ResultantAppStateDetail
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ResultantAppStateDetail>
public enum ResultantAppStateDetail extends Enum<ResultantAppStateDetail> 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 ResultantAppStateDetailvalueOf(String name)Returns the enum constant of this type with the specified name.static ResultantAppStateDetail[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESSOR_ARCHITECTURE_NOT_APPLICABLE
public static final ResultantAppStateDetail PROCESSOR_ARCHITECTURE_NOT_APPLICABLE
-
MINIMUM_DISK_SPACE_NOT_MET
public static final ResultantAppStateDetail MINIMUM_DISK_SPACE_NOT_MET
-
MINIMUM_OS_VERSION_NOT_MET
public static final ResultantAppStateDetail MINIMUM_OS_VERSION_NOT_MET
-
MINIMUM_PHYSICAL_MEMORY_NOT_MET
public static final ResultantAppStateDetail MINIMUM_PHYSICAL_MEMORY_NOT_MET
-
MINIMUM_LOGICAL_PROCESSOR_COUNT_NOT_MET
public static final ResultantAppStateDetail MINIMUM_LOGICAL_PROCESSOR_COUNT_NOT_MET
-
MINIMUM_CPU_SPEED_NOT_MET
public static final ResultantAppStateDetail MINIMUM_CPU_SPEED_NOT_MET
-
PLATFORM_NOT_APPLICABLE
public static final ResultantAppStateDetail PLATFORM_NOT_APPLICABLE
-
FILE_SYSTEM_REQUIREMENT_NOT_MET
public static final ResultantAppStateDetail FILE_SYSTEM_REQUIREMENT_NOT_MET
-
REGISTRY_REQUIREMENT_NOT_MET
public static final ResultantAppStateDetail REGISTRY_REQUIREMENT_NOT_MET
-
POWER_SHELL_SCRIPT_REQUIREMENT_NOT_MET
public static final ResultantAppStateDetail POWER_SHELL_SCRIPT_REQUIREMENT_NOT_MET
-
SUPERSEDING_APPS_NOT_APPLICABLE
public static final ResultantAppStateDetail SUPERSEDING_APPS_NOT_APPLICABLE
-
NO_ADDITIONAL_DETAILS
public static final ResultantAppStateDetail NO_ADDITIONAL_DETAILS
-
DEPENDENCY_FAILED_TO_INSTALL
public static final ResultantAppStateDetail DEPENDENCY_FAILED_TO_INSTALL
-
DEPENDENCY_WITH_REQUIREMENTS_NOT_MET
public static final ResultantAppStateDetail DEPENDENCY_WITH_REQUIREMENTS_NOT_MET
-
DEPENDENCY_PENDING_REBOOT
public static final ResultantAppStateDetail DEPENDENCY_PENDING_REBOOT
-
DEPENDENCY_WITH_AUTO_INSTALL_DISABLED
public static final ResultantAppStateDetail DEPENDENCY_WITH_AUTO_INSTALL_DISABLED
-
SUPERSEDED_APP_UNINSTALL_FAILED
public static final ResultantAppStateDetail SUPERSEDED_APP_UNINSTALL_FAILED
-
SUPERSEDED_APP_UNINSTALL_PENDING_REBOOT
public static final ResultantAppStateDetail SUPERSEDED_APP_UNINSTALL_PENDING_REBOOT
-
REMOVING_SUPERSEDED_APPS
public static final ResultantAppStateDetail REMOVING_SUPERSEDED_APPS
-
IOS_APP_STORE_UPDATE_FAILED_TO_INSTALL
public static final ResultantAppStateDetail IOS_APP_STORE_UPDATE_FAILED_TO_INSTALL
-
VPP_APP_HAS_UPDATE_AVAILABLE
public static final ResultantAppStateDetail VPP_APP_HAS_UPDATE_AVAILABLE
-
USER_REJECTED_UPDATE
public static final ResultantAppStateDetail USER_REJECTED_UPDATE
-
UNINSTALL_PENDING_REBOOT
public static final ResultantAppStateDetail UNINSTALL_PENDING_REBOOT
-
SUPERSEDING_APPS_DETECTED
public static final ResultantAppStateDetail SUPERSEDING_APPS_DETECTED
-
SUPERSEDED_APPS_DETECTED
public static final ResultantAppStateDetail SUPERSEDED_APPS_DETECTED
-
SEE_INSTALL_ERROR_CODE
public static final ResultantAppStateDetail SEE_INSTALL_ERROR_CODE
-
AUTO_INSTALL_DISABLED
public static final ResultantAppStateDetail AUTO_INSTALL_DISABLED
-
MANAGED_APP_NO_LONGER_PRESENT
public static final ResultantAppStateDetail MANAGED_APP_NO_LONGER_PRESENT
-
USER_REJECTED_INSTALL
public static final ResultantAppStateDetail USER_REJECTED_INSTALL
-
USER_IS_NOT_LOGGED_INTO_APP_STORE
public static final ResultantAppStateDetail USER_IS_NOT_LOGGED_INTO_APP_STORE
-
UNTARGETED_SUPERSEDING_APPS_DETECTED
public static final ResultantAppStateDetail UNTARGETED_SUPERSEDING_APPS_DETECTED
-
APP_REMOVED_BY_SUPERSEDENCE
public static final ResultantAppStateDetail APP_REMOVED_BY_SUPERSEDENCE
-
SEE_UNINSTALL_ERROR_CODE
public static final ResultantAppStateDetail SEE_UNINSTALL_ERROR_CODE
-
PENDING_REBOOT
public static final ResultantAppStateDetail PENDING_REBOOT
-
INSTALLING_DEPENDENCIES
public static final ResultantAppStateDetail INSTALLING_DEPENDENCIES
-
CONTENT_DOWNLOADED
public static final ResultantAppStateDetail CONTENT_DOWNLOADED
-
-
Method Detail
-
values
public static ResultantAppStateDetail[] 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 (ResultantAppStateDetail c : ResultantAppStateDetail.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultantAppStateDetail 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
-
-