public static enum InPredicate.Operator extends Enum<InPredicate.Operator>
| Enum Constant and Description |
|---|
IN
IN and NOT IN operators for set membership check
|
NOT_IN |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static InPredicate.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InPredicate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InPredicate.Operator IN
public static final InPredicate.Operator NOT_IN
public static InPredicate.Operator[] values()
for (InPredicate.Operator c : InPredicate.Operator.values()) System.out.println(c);
public static InPredicate.Operator 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 nullpublic String getDescription()
Copyright © 2024 Alibaba Cloud Computing. All rights reserved.