Enum Constant and Description |
---|
CONTAINS |
DATE_INTERVAL |
DOES_NOT_CONTAIN |
ENDS_WITH |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
IN |
LESSER |
LESSER_OR_EQUAL |
NOT_EMPTY |
NOT_EQUAL |
NOT_IN |
STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
forGroovy() |
java.lang.String |
forJpql() |
static Op |
fromGroovyString(java.lang.String str) |
static Op |
fromJpqlString(java.lang.String str) |
java.lang.String |
getId() |
java.lang.String |
getLocCaption() |
boolean |
isUnary() |
static Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Op CONTAINS
public static final Op EQUAL
public static final Op IN
public static final Op NOT_IN
public static final Op NOT_EQUAL
public static final Op GREATER
public static final Op GREATER_OR_EQUAL
public static final Op LESSER
public static final Op LESSER_OR_EQUAL
public static final Op DOES_NOT_CONTAIN
public static final Op NOT_EMPTY
public static final Op STARTS_WITH
public static final Op DATE_INTERVAL
public static final Op ENDS_WITH
public static Op[] values()
for (Op c : Op.values()) System.out.println(c);
public static Op 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 nullpublic java.lang.String forJpql()
public java.lang.String forGroovy()
public boolean isUnary()
public static Op fromJpqlString(java.lang.String str)
public static Op fromGroovyString(java.lang.String str)
public java.lang.String getLocCaption()
public java.lang.String getId()
getId
in interface com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>