public enum Condition extends Enum<Condition>
| Modifier and Type | Class and Description |
|---|---|
static interface |
Condition.Builder |
static class |
Condition.QueryParameters |
| Enum Constant and Description |
|---|
ANY_END |
ANY_EQUAL |
ANY_LIKE |
ANY_START |
BETWEEN |
END |
EQUAL |
GREATER_EQUAL |
GREATER_THAN |
IN |
IS_NULL |
LESS_EQUAL |
LESS_THAN |
LIKE |
NOT_ANY_END |
NOT_ANY_EQUAL |
NOT_ANY_LIKE |
NOT_ANY_START |
NOT_END |
NOT_EQUAL |
NOT_IN |
NOT_LIKE |
NOT_NULL |
NOT_START |
START |
| Modifier and Type | Method and Description |
|---|---|
Condition.Builder |
getBuilder() |
boolean |
isConvert() |
static Condition |
of(String value) |
static Condition |
of(String value,
Condition defaultValue) |
static Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition ANY_LIKE
public static final Condition ANY_START
public static final Condition ANY_END
public static final Condition ANY_EQUAL
public static final Condition LIKE
public static final Condition START
public static final Condition END
public static final Condition NOT_ANY_LIKE
public static final Condition NOT_ANY_START
public static final Condition NOT_ANY_END
public static final Condition NOT_ANY_EQUAL
public static final Condition NOT_LIKE
public static final Condition NOT_START
public static final Condition NOT_END
public static final Condition NOT_EQUAL
public static final Condition BETWEEN
public static final Condition NOT_NULL
public static final Condition IS_NULL
public static final Condition GREATER_THAN
public static final Condition GREATER_EQUAL
public static final Condition LESS_THAN
public static final Condition LESS_EQUAL
public static final Condition IN
public static final Condition NOT_IN
public static final Condition EQUAL
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 boolean isConvert()
public Condition.Builder getBuilder()
Copyright © 2024. All rights reserved.