List of usage examples for org.apache.lucene.queryparser.flexible.core.messages QueryParserMessages LUCENE_QUERY_CONVERSION_ERROR
String LUCENE_QUERY_CONVERSION_ERROR
To view the source code for org.apache.lucene.queryparser.flexible.core.messages QueryParserMessages LUCENE_QUERY_CONVERSION_ERROR.
Click Source Link
From source file:org.sindice.siren.qparser.keyword.builders.MatchNoDocsQueryNodeBuilder.java
License:Apache License
public NodeBooleanQuery build(final QueryNode queryNode) throws QueryNodeException { // validates node if (!(queryNode instanceof MatchNoDocsQueryNode)) { throw new QueryNodeException(new MessageImpl(QueryParserMessages.LUCENE_QUERY_CONVERSION_ERROR, queryNode.toQueryString(new EscapeQuerySyntaxImpl()), queryNode.getClass().getName())); }/*from ww w . ja v a 2 s.com*/ return new NodeBooleanQuery(); }