public enum DefenderMonitorFileActivity extends java.lang.Enum<DefenderMonitorFileActivity>
| Enum Constant and Description |
|---|
DISABLE
disable
|
MONITOR_ALL_FILES
monitor All Files
|
MONITOR_INCOMING_FILES_ONLY
monitor Incoming Files Only
|
MONITOR_OUTGOING_FILES_ONLY
monitor Outgoing Files Only
|
UNEXPECTED_VALUE
For DefenderMonitorFileActivity values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static DefenderMonitorFileActivity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefenderMonitorFileActivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefenderMonitorFileActivity USER_DEFINED
public static final DefenderMonitorFileActivity DISABLE
public static final DefenderMonitorFileActivity MONITOR_ALL_FILES
public static final DefenderMonitorFileActivity MONITOR_INCOMING_FILES_ONLY
public static final DefenderMonitorFileActivity MONITOR_OUTGOING_FILES_ONLY
public static final DefenderMonitorFileActivity UNEXPECTED_VALUE
public static DefenderMonitorFileActivity[] values()
for (DefenderMonitorFileActivity c : DefenderMonitorFileActivity.values()) System.out.println(c);
public static DefenderMonitorFileActivity 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