public enum FilterStrategy extends java.lang.Enum<FilterStrategy>
| Enum Constant and Description |
|---|
AUTO
AUTO analyzes the filter expression and splits it up into sub-expressions executed by different strategies.
|
DB
DB executes the filter expression in DB.
|
POST
POST executes the filter expression in memory after loading the whole graph.
|
STREAM
STREAM executes the filter expression in memory visiting vertices/edges.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterStrategy AUTO
public static final FilterStrategy DB
public static final FilterStrategy POST
public static final FilterStrategy STREAM
public static FilterStrategy 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 static FilterStrategy[] values()
for (FilterStrategy c : FilterStrategy.values()) System.out.println(c);