public enum BinarySetMembershipOperator extends Enum<BinarySetMembershipOperator>
BinarySetMembershipExpression
Enum Constant and Description |
---|
IN
Compares if the left-hand value is equal to any of the
right-hand values
|
NOT_IN
Compares if the left-hand value is not equal to all of the
right-hand values
|
Modifier and Type | Method and Description |
---|---|
static BinarySetMembershipOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinarySetMembershipOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinarySetMembershipOperator IN
public static final BinarySetMembershipOperator NOT_IN
public static BinarySetMembershipOperator[] values()
for (BinarySetMembershipOperator c : BinarySetMembershipOperator.values()) System.out.println(c);
public static BinarySetMembershipOperator 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 © 2017. All rights reserved.