Package com.arcadedb.query.select
Class SelectWhereAfterBlock
- java.lang.Object
-
- com.arcadedb.query.select.SelectWhereAfterBlock
-
public class SelectWhereAfterBlock extends Object
Native Query engine is a simple query engine that covers most of the classic use cases, such as the retrieval of records with a where condition. It could be much faster than the same SQL query because it does not use any parser and it is very JIT friendly. Future versions could translate the query into bytecode to have an even faster execution.- Author:
- Luca Garulli ([email protected])
-
-
Constructor Summary
Constructors Constructor Description SelectWhereAfterBlock(Select select)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectWhereLeftBlock
and()
SelectCompiled
compile()
SelectIterator<Document>
documents()
SelectIterator<Edge>
edges()
Select
limit(int limit)
SelectWhereLeftBlock
or()
Select
orderBy(String property, boolean ascending)
Select
skip(int skip)
Select
timeout(long timeoutValue, TimeUnit timeoutUnit, boolean exceptionOnTimeout)
SelectIterator<Vertex>
vertices()
-
-
-
Constructor Detail
-
SelectWhereAfterBlock
public SelectWhereAfterBlock(Select select)
-
-
Method Detail
-
and
public SelectWhereLeftBlock and()
-
or
public SelectWhereLeftBlock or()
-
vertices
public SelectIterator<Vertex> vertices()
-
edges
public SelectIterator<Edge> edges()
-
documents
public SelectIterator<Document> documents()
-
compile
public SelectCompiled compile()
-
limit
public Select limit(int limit)
-
skip
public Select skip(int skip)
-
-