Package odata.msgraph.client.enums
Enum WindowsDefenderProductStatus
- java.lang.Object
-
- java.lang.Enum<WindowsDefenderProductStatus>
-
- odata.msgraph.client.enums.WindowsDefenderProductStatus
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<WindowsDefenderProductStatus>
public enum WindowsDefenderProductStatus extends Enum<WindowsDefenderProductStatus> 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 WindowsDefenderProductStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static WindowsDefenderProductStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_STATUS
public static final WindowsDefenderProductStatus NO_STATUS
-
SERVICE_NOT_RUNNING
public static final WindowsDefenderProductStatus SERVICE_NOT_RUNNING
-
SERVICE_STARTED_WITHOUT_MALWARE_PROTECTION
public static final WindowsDefenderProductStatus SERVICE_STARTED_WITHOUT_MALWARE_PROTECTION
-
PENDING_FULL_SCAN_DUE_TO_THREAT_ACTION
public static final WindowsDefenderProductStatus PENDING_FULL_SCAN_DUE_TO_THREAT_ACTION
-
PENDING_REBOOT_DUE_TO_THREAT_ACTION
public static final WindowsDefenderProductStatus PENDING_REBOOT_DUE_TO_THREAT_ACTION
-
PENDING_MANUAL_STEPS_DUE_TO_THREAT_ACTION
public static final WindowsDefenderProductStatus PENDING_MANUAL_STEPS_DUE_TO_THREAT_ACTION
-
AV_SIGNATURES_OUT_OF_DATE
public static final WindowsDefenderProductStatus AV_SIGNATURES_OUT_OF_DATE
-
AS_SIGNATURES_OUT_OF_DATE
public static final WindowsDefenderProductStatus AS_SIGNATURES_OUT_OF_DATE
-
NO_QUICK_SCAN_HAPPENED_FOR_SPECIFIED_PERIOD
public static final WindowsDefenderProductStatus NO_QUICK_SCAN_HAPPENED_FOR_SPECIFIED_PERIOD
-
NO_FULL_SCAN_HAPPENED_FOR_SPECIFIED_PERIOD
public static final WindowsDefenderProductStatus NO_FULL_SCAN_HAPPENED_FOR_SPECIFIED_PERIOD
-
SYSTEM_INITIATED_SCAN_IN_PROGRESS
public static final WindowsDefenderProductStatus SYSTEM_INITIATED_SCAN_IN_PROGRESS
-
SYSTEM_INITIATED_CLEAN_IN_PROGRESS
public static final WindowsDefenderProductStatus SYSTEM_INITIATED_CLEAN_IN_PROGRESS
-
SAMPLES_PENDING_SUBMISSION
public static final WindowsDefenderProductStatus SAMPLES_PENDING_SUBMISSION
-
PRODUCT_RUNNING_IN_EVALUATION_MODE
public static final WindowsDefenderProductStatus PRODUCT_RUNNING_IN_EVALUATION_MODE
-
PRODUCT_RUNNING_IN_NON_GENUINE_MODE
public static final WindowsDefenderProductStatus PRODUCT_RUNNING_IN_NON_GENUINE_MODE
-
PRODUCT_EXPIRED
public static final WindowsDefenderProductStatus PRODUCT_EXPIRED
-
OFFLINE_SCAN_REQUIRED
public static final WindowsDefenderProductStatus OFFLINE_SCAN_REQUIRED
-
SERVICE_SHUTDOWN_AS_PART_OF_SYSTEM_SHUTDOWN
public static final WindowsDefenderProductStatus SERVICE_SHUTDOWN_AS_PART_OF_SYSTEM_SHUTDOWN
-
THREAT_REMEDIATION_FAILED_CRITICALLY
public static final WindowsDefenderProductStatus THREAT_REMEDIATION_FAILED_CRITICALLY
-
THREAT_REMEDIATION_FAILED_NON_CRITICALLY
public static final WindowsDefenderProductStatus THREAT_REMEDIATION_FAILED_NON_CRITICALLY
-
NO_STATUS_FLAGS_SET
public static final WindowsDefenderProductStatus NO_STATUS_FLAGS_SET
-
PLATFORM_OUT_OF_DATE
public static final WindowsDefenderProductStatus PLATFORM_OUT_OF_DATE
-
PLATFORM_UPDATE_IN_PROGRESS
public static final WindowsDefenderProductStatus PLATFORM_UPDATE_IN_PROGRESS
-
PLATFORM_ABOUT_TO_BE_OUTDATED
public static final WindowsDefenderProductStatus PLATFORM_ABOUT_TO_BE_OUTDATED
-
SIGNATURE_OR_PLATFORM_END_OF_LIFE_IS_PAST_OR_IS_IMPENDING
public static final WindowsDefenderProductStatus SIGNATURE_OR_PLATFORM_END_OF_LIFE_IS_PAST_OR_IS_IMPENDING
-
WINDOWS_SMODE_SIGNATURES_IN_USE_ON_NON_WIN10SINSTALL
public static final WindowsDefenderProductStatus WINDOWS_SMODE_SIGNATURES_IN_USE_ON_NON_WIN10SINSTALL
-
-
Method Detail
-
values
public static WindowsDefenderProductStatus[] 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 (WindowsDefenderProductStatus c : WindowsDefenderProductStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowsDefenderProductStatus 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
-
-