com.github.ddth.lucext.utils.LucextUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddth-lucext-core Show documentation
Show all versions of ddth-lucext-core Show documentation
DDTH's utilities and extensions for Apache Lucene
The newest version!
package com.github.ddth.lucext.utils;
import org.apache.lucene.search.Query;
/**
* Lucext utility class.
*
* @author Thanh Nguyen
* @since 0.3.0
*/
public class LucextUtils {
/**
* Build the query to search for an exact term.
*
* @param field
* @param value
* @return
*/
public static Query searchExactlyFor(String field, Object value) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy