public static enum BinaryPredicate.Operator extends Enum<BinaryPredicate.Operator>
| Enum Constant and Description |
|---|
EQUALS
二元运算操作符
|
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static BinaryPredicate.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryPredicate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryPredicate.Operator EQUALS
public static final BinaryPredicate.Operator NOT_EQUALS
public static final BinaryPredicate.Operator GREATER_THAN
public static final BinaryPredicate.Operator LESS_THAN
public static final BinaryPredicate.Operator GREATER_THAN_OR_EQUAL
public static final BinaryPredicate.Operator LESS_THAN_OR_EQUAL
public static BinaryPredicate.Operator[] values()
for (BinaryPredicate.Operator c : BinaryPredicate.Operator.values()) System.out.println(c);
public static BinaryPredicate.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.