public enum CriteriaOperator extends Enum<CriteriaOperator>
| Enum Constant and Description |
|---|
CONTAINS |
EQUALS |
EQUALS_IGNORE_CASE |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IS_NOT_NULL |
IS_NULL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_CONTAINS |
NOT_EQUALS |
NOT_EQUALS_IGNORE_CASE |
| Modifier and Type | Method and Description |
|---|---|
static CriteriaOperator |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static CriteriaOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CriteriaOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriteriaOperator CONTAINS
public static final CriteriaOperator EQUALS
public static final CriteriaOperator EQUALS_IGNORE_CASE
public static final CriteriaOperator GREATER_THAN
public static final CriteriaOperator GREATER_THAN_OR_EQUAL
public static final CriteriaOperator LESS_THAN
public static final CriteriaOperator LESS_THAN_OR_EQUAL
public static final CriteriaOperator NOT_EQUALS
public static final CriteriaOperator NOT_EQUALS_IGNORE_CASE
public static final CriteriaOperator NOT_CONTAINS
public static final CriteriaOperator IS_NULL
public static final CriteriaOperator IS_NOT_NULL
public static CriteriaOperator[] values()
for (CriteriaOperator c : CriteriaOperator.values()) System.out.println(c);
public static CriteriaOperator 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 String getValue()
public String toString()
toString in class Enum<CriteriaOperator>public static CriteriaOperator fromValue(String text)
Copyright © 2023. All rights reserved.