Package odata.msgraph.client.beta.enums
Enum WindowsMalwareThreatState
- java.lang.Object
-
- java.lang.Enum<WindowsMalwareThreatState>
-
- odata.msgraph.client.beta.enums.WindowsMalwareThreatState
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<WindowsMalwareThreatState>
public enum WindowsMalwareThreatState extends Enum<WindowsMalwareThreatState> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_FAILEDACTIVEALLOWEDCLEANEDFULL_SCAN_REQUIREDMANUAL_STEPS_REQUIREDNO_STATUS_CLEAREDQUARANTINEDREBOOT_REQUIREDREMEDIATED_WITH_NON_CRITICAL_FAILURESREMOVED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static WindowsMalwareThreatStatevalueOf(String name)Returns the enum constant of this type with the specified name.static WindowsMalwareThreatState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final WindowsMalwareThreatState ACTIVE
-
ACTION_FAILED
public static final WindowsMalwareThreatState ACTION_FAILED
-
MANUAL_STEPS_REQUIRED
public static final WindowsMalwareThreatState MANUAL_STEPS_REQUIRED
-
FULL_SCAN_REQUIRED
public static final WindowsMalwareThreatState FULL_SCAN_REQUIRED
-
REBOOT_REQUIRED
public static final WindowsMalwareThreatState REBOOT_REQUIRED
-
REMEDIATED_WITH_NON_CRITICAL_FAILURES
public static final WindowsMalwareThreatState REMEDIATED_WITH_NON_CRITICAL_FAILURES
-
QUARANTINED
public static final WindowsMalwareThreatState QUARANTINED
-
REMOVED
public static final WindowsMalwareThreatState REMOVED
-
CLEANED
public static final WindowsMalwareThreatState CLEANED
-
ALLOWED
public static final WindowsMalwareThreatState ALLOWED
-
NO_STATUS_CLEARED
public static final WindowsMalwareThreatState NO_STATUS_CLEARED
-
-
Method Detail
-
values
public static WindowsMalwareThreatState[] 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 (WindowsMalwareThreatState c : WindowsMalwareThreatState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowsMalwareThreatState 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
-
-