public static enum FilteringObjective.Type extends java.lang.Enum<FilteringObjective.Type>
Enum Constant and Description |
---|
DENY
Denies packets that make it through the permit filters.
|
PERMIT
Permits packets that match the filtering condition to be processed
by the rest of the pipeline.
|
Modifier and Type | Method and Description |
---|---|
static FilteringObjective.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilteringObjective.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteringObjective.Type PERMIT
public static final FilteringObjective.Type DENY
public static FilteringObjective.Type[] values()
for (FilteringObjective.Type c : FilteringObjective.Type.values()) System.out.println(c);
public static FilteringObjective.Type 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