Interface LuceneQueryMapper<T extends SearchQuery>

    • Method Detail

      • convertToLuceneQuery

        org.apache.lucene.search.Query convertToLuceneQuery​(T searchQuery)
        Convert a SearchQuery into a lucene query. So a query that represents a search for any value in a particular index field should map to null.
        Parameters:
        searchQuery - the query to convert
        Returns:
        the lucene query corresponding to the search query. null can be returned and signifies that no mapped query is necessary for the mapped query.
        Throws:
        IllegalArgumentException - if the search query is null or invalid