public enum Operators extends Enum<Operators> implements Operator
| Modifier and Type | Method and Description |
|---|---|
javax.persistence.criteria.Predicate |
build(javax.persistence.criteria.CriteriaBuilder cb,
javax.persistence.criteria.Expression<Boolean> x,
javax.persistence.criteria.Expression<Boolean> y) |
Operator |
getOperator() |
static Operators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Operators[] values()
for (Operators c : Operators.values()) System.out.println(c);
public static Operators 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 Operator getOperator()
Copyright © 2018. All rights reserved.