public enum FilteringOperator extends java.lang.Enum<FilteringOperator>
CompositeFilter
.Filter
Enum Constant and Description |
---|
INTERSECTION
Defines the intersection of several filters: it matches if all the
filters match.
|
SUBSTRACTION
Defines the substraction of several filters to one filter: it matches if
the first filter matches and all the others do not match.
|
UNION
Defines the union of several filters: it matches if one of the filters
matches.
|
Modifier and Type | Method and Description |
---|---|
static FilteringOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilteringOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteringOperator UNION
public static final FilteringOperator INTERSECTION
public static final FilteringOperator SUBSTRACTION
public static FilteringOperator[] values()
for (FilteringOperator c : FilteringOperator.values()) System.out.println(c);
public static FilteringOperator 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 nullCopyright © 2007–2021 Inria. All rights reserved.