public enum IncQueryFilterSemantics extends java.lang.Enum<IncQueryFilterSemantics>
| Enum Constant and Description |
|---|
AND
allows passthrough only if all of the given (partial) matches are compatible with the event.
|
OR
allows passthrough if any of the given (partial) matches are compatible with the event.
|
SINGLE
allows passthrough if the given (single) (partial) match is compatible with the event.
|
| Modifier and Type | Method and Description |
|---|---|
static IncQueryFilterSemantics |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IncQueryFilterSemantics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncQueryFilterSemantics SINGLE
public static final IncQueryFilterSemantics OR
public static final IncQueryFilterSemantics AND
public static IncQueryFilterSemantics[] values()
for (IncQueryFilterSemantics c : IncQueryFilterSemantics.values()) System.out.println(c);
public static IncQueryFilterSemantics 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