public enum Condition extends java.lang.Enum<Condition>
It is mainly used in the attribute-based graph select operations.
Enum Constant and Description |
---|
Between
In range operator condition ([x,y]).
|
Equal
Equal condition (==).
|
GreaterEqual
Greater or equal condition (>=).
|
GreaterThan
Greater than condition (>).
|
LessEqual
Less or equal condition (<=).
|
LessThan
Less than condition (<).
|
Like
Substring condition.
|
LikeNoCase
Substring (no case sensitive) condition.
|
NotEqual
Not equal condition (!
|
RegExp
Regular expression condition.
|
Modifier and Type | Method and Description |
---|---|
static Condition |
valueOf(java.lang.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 Equal
Equal condition (==).
public static final Condition GreaterEqual
Greater or equal condition (>=).
public static final Condition GreaterThan
Greater than condition (>).
public static final Condition LessEqual
Less or equal condition (<=).
public static final Condition LessThan
Less than condition (<).
public static final Condition NotEqual
Not equal condition (!=).
public static final Condition Like
Substring condition.
public static final Condition LikeNoCase
Substring (no case sensitive) condition.
public static final Condition Between
In range operator condition ([x,y]).
public static final Condition RegExp
Regular expression condition.
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 null