public static enum LiQuerySetting.LiWhereClause extends java.lang.Enum<LiQuerySetting.LiWhereClause>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUALS |
IN |
LESS_THAN |
LESS_THAN_EQUAL |
MATCHES |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static LiQuerySetting.LiWhereClause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiQuerySetting.LiWhereClause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiQuerySetting.LiWhereClause EQUALS
public static final LiQuerySetting.LiWhereClause NOT_EQUALS
public static final LiQuerySetting.LiWhereClause GREATER_THAN
public static final LiQuerySetting.LiWhereClause GREATER_THAN_EQUALS
public static final LiQuerySetting.LiWhereClause LESS_THAN
public static final LiQuerySetting.LiWhereClause LESS_THAN_EQUAL
public static final LiQuerySetting.LiWhereClause IN
public static final LiQuerySetting.LiWhereClause MATCHES
public static LiQuerySetting.LiWhereClause[] values()
for (LiQuerySetting.LiWhereClause c : LiQuerySetting.LiWhereClause.values()) System.out.println(c);
public static LiQuerySetting.LiWhereClause 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 getValue()
public boolean equals(java.lang.String value)
public java.lang.String toString()
toString
in class java.lang.Enum<LiQuerySetting.LiWhereClause>