@Internal public enum PredicateUnaryOp extends java.lang.Enum<PredicateUnaryOp>
| Enum Constant and Description |
|---|
IS_EMPTY |
IS_FALSE |
IS_NON_NULL |
IS_NOT_EMPTY |
IS_NULL |
IS_TRUE |
| Modifier and Type | Method and Description |
|---|---|
PredicateUnaryOp |
negate() |
static PredicateUnaryOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PredicateUnaryOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateUnaryOp IS_NULL
public static final PredicateUnaryOp IS_NON_NULL
public static final PredicateUnaryOp IS_TRUE
public static final PredicateUnaryOp IS_FALSE
public static final PredicateUnaryOp IS_EMPTY
public static final PredicateUnaryOp IS_NOT_EMPTY
public static PredicateUnaryOp[] values()
for (PredicateUnaryOp c : PredicateUnaryOp.values()) System.out.println(c);
public static PredicateUnaryOp 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@Nullable public PredicateUnaryOp negate()