public enum DefenderThreatAction extends java.lang.Enum<DefenderThreatAction>
| Enum Constant and Description |
|---|
ALLOW
allow
|
BLOCK
block
|
CLEAN
clean
|
DEVICE_DEFAULT
device Default
|
QUARANTINE
quarantine
|
REMOVE
remove
|
UNEXPECTED_VALUE
For DefenderThreatAction values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static DefenderThreatAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefenderThreatAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefenderThreatAction DEVICE_DEFAULT
public static final DefenderThreatAction CLEAN
public static final DefenderThreatAction QUARANTINE
public static final DefenderThreatAction REMOVE
public static final DefenderThreatAction ALLOW
public static final DefenderThreatAction USER_DEFINED
public static final DefenderThreatAction BLOCK
public static final DefenderThreatAction UNEXPECTED_VALUE
public static DefenderThreatAction[] values()
for (DefenderThreatAction c : DefenderThreatAction.values()) System.out.println(c);
public static DefenderThreatAction valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null