public enum NullPredicateType extends Enum<NullPredicateType>
| Enum Constant and Description |
|---|
IS_NOT_NULL
Represents a simply
a -> a != null predicate. |
IS_NULL
Represents a simply
a -> a == null predicate. |
OTHER
Represents any kind of predicate, including
IS_NULL or
IS_NOT_NULL. |
| Modifier and Type | Method and Description |
|---|---|
static NullPredicateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NullPredicateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NullPredicateType IS_NULL
a -> a == null predicate.public static final NullPredicateType IS_NOT_NULL
a -> a != null predicate.public static final NullPredicateType OTHER
IS_NULL or
IS_NOT_NULL.public static NullPredicateType[] values()
for (NullPredicateType c : NullPredicateType.values()) System.out.println(c);
public static NullPredicateType 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 © 2019 Speedment, Inc.. All rights reserved.