public enum JPQLOps extends Enum<JPQLOps> implements Operator
JPQLOps
provides JPQL specific operatorsEnum Constant and Description |
---|
CAST |
INDEX |
KEY |
MEMBER_OF |
NOT_MEMBER_OF |
TREAT |
TYPE |
VALUE |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static JPQLOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPQLOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPQLOps TREAT
public static final JPQLOps INDEX
public static final JPQLOps TYPE
public static final JPQLOps CAST
public static final JPQLOps MEMBER_OF
public static final JPQLOps NOT_MEMBER_OF
public static final JPQLOps KEY
public static final JPQLOps VALUE
public static JPQLOps[] values()
for (JPQLOps c : JPQLOps.values()) System.out.println(c);
public static JPQLOps 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 © 2007–2016 Querydsl. All rights reserved.