Module org.elasticsearch.compute
Interface LookupEnrichQueryGenerator
- All Known Implementing Classes:
ExpressionQueryList,QueryList
public interface LookupEnrichQueryGenerator
An interface to generates queries for the lookup and enrich operators.
This interface is used to retrieve queries based on a position index.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the number of queries in this generatororg.apache.lucene.search.QuerygetQuery(int position) Returns the query at the given position.
-
Method Details
-
getQuery
@Nullable org.apache.lucene.search.Query getQuery(int position) Returns the query at the given position. -
getPositionCount
int getPositionCount()Returns the number of queries in this generator
-