@Deprecated public enum FilterOperationType extends Enum<FilterOperationType>
UserRule| Enum Constant and Description |
|---|
ALL_CONDITIONS
Deprecated.
Rule evaluates to true if all conditions are met.
|
ANY_CONDITION
Deprecated.
Rule evaluates to true if any condition is met.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterOperationType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static FilterOperationType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperationType ALL_CONDITIONS
public static final FilterOperationType ANY_CONDITION
public static FilterOperationType[] values()
for (FilterOperationType c : FilterOperationType.values()) System.out.println(c);
public static FilterOperationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.