Package com.arcadedb.query.select
Class SelectWhereOperatorBlock
- java.lang.Object
-
- com.arcadedb.query.select.SelectWhereOperatorBlock
-
public class SelectWhereOperatorBlock 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 SelectWhereOperatorBlock(Select select)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectWhereRightBlock
eq()
SelectWhereRightBlock
ge()
SelectWhereRightBlock
gt()
SelectWhereRightBlock
ilike()
SelectWhereRightBlock
le()
SelectWhereRightBlock
like()
SelectWhereRightBlock
lt()
SelectWhereRightBlock
neq()
-
-
-
Constructor Detail
-
SelectWhereOperatorBlock
public SelectWhereOperatorBlock(Select select)
-
-
Method Detail
-
eq
public SelectWhereRightBlock eq()
-
neq
public SelectWhereRightBlock neq()
-
lt
public SelectWhereRightBlock lt()
-
le
public SelectWhereRightBlock le()
-
gt
public SelectWhereRightBlock gt()
-
ge
public SelectWhereRightBlock ge()
-
like
public SelectWhereRightBlock like()
-
ilike
public SelectWhereRightBlock ilike()
-
-