List of usage examples for org.apache.solr.common.params HighlightParams SIMPLE
String SIMPLE
To view the source code for org.apache.solr.common.params HighlightParams SIMPLE.
Click Source Link
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); }