public enum ViatraQueryFilterSemantics extends java.lang.Enum<ViatraQueryFilterSemantics>
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 ViatraQueryFilterSemantics |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViatraQueryFilterSemantics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViatraQueryFilterSemantics SINGLE
public static final ViatraQueryFilterSemantics OR
public static final ViatraQueryFilterSemantics AND
public static ViatraQueryFilterSemantics[] values()
for (ViatraQueryFilterSemantics c : ViatraQueryFilterSemantics.values()) System.out.println(c);
public static ViatraQueryFilterSemantics 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