public static enum Predicate.PredicateType extends Enum<Predicate.PredicateType>
| Enum Constant and Description |
|---|
ATTRIBUTE
属性(列名)
|
BINARY
二元谓词
AND, OR, NOT
|
COMPOUND
复合谓词
AND, OR
|
CONSTANT
常量
|
IN
IN, NOT IN
|
RAW
String类型,不进行任何处理
|
UNARY
一元谓词
IS_NULL, IS_NOT_NULL
|
| Modifier and Type | Method and Description |
|---|---|
static Predicate.PredicateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicate.PredicateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicate.PredicateType BINARY
public static final Predicate.PredicateType UNARY
public static final Predicate.PredicateType COMPOUND
public static final Predicate.PredicateType IN
public static final Predicate.PredicateType CONSTANT
public static final Predicate.PredicateType ATTRIBUTE
public static final Predicate.PredicateType RAW
public static Predicate.PredicateType[] values()
for (Predicate.PredicateType c : Predicate.PredicateType.values()) System.out.println(c);
public static Predicate.PredicateType 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 © 2024 Alibaba Cloud Computing. All rights reserved.