Example usage for org.apache.solr.common.params HighlightParams SIMPLE

List of usage examples for org.apache.solr.common.params HighlightParams SIMPLE

Introduction

In this page you can find the example usage for org.apache.solr.common.params HighlightParams SIMPLE.

Prototype

String SIMPLE

To view the source code for org.apache.solr.common.params HighlightParams SIMPLE.

Click Source Link

Usage

From source file:com.frank.search.solr.repository.query.AbstractSolrQuery.java

License:Apache License

private boolean isSimpleHighlightingOption(String formatter) {
    return formatter == null || HighlightParams.SIMPLE.equalsIgnoreCase(formatter);
}