Package | Description |
---|---|
org.apache.solr.client.solrj.request | |
org.apache.solr.handler |
Modifier and Type | Method and Description |
---|---|
FieldAnalysisRequest |
FieldAnalysisRequest.addFieldName(java.lang.String fieldName)
Adds the given field name for analysis.
|
FieldAnalysisRequest |
FieldAnalysisRequest.addFieldType(java.lang.String fieldTypeName)
Adds the given field type for analysis.
|
FieldAnalysisRequest |
FieldAnalysisRequest.setFieldNames(java.util.List<java.lang.String> fieldNames)
Sets the field names on which the analysis should be performed.
|
FieldAnalysisRequest |
FieldAnalysisRequest.setFieldTypes(java.util.List<java.lang.String> fieldTypes)
Sets the field types on which analysis should be performed.
|
FieldAnalysisRequest |
FieldAnalysisRequest.setFieldValue(java.lang.String fieldValue)
Sets the field value to be analyzed.
|
FieldAnalysisRequest |
FieldAnalysisRequest.setQuery(java.lang.String query)
Sets the query to be analyzed.
|
FieldAnalysisRequest |
FieldAnalysisRequest.setShowMatch(boolean showMatch)
Sets whether index time tokens that match query time tokens should be marked as a "match".
|
Modifier and Type | Method and Description |
---|---|
(package private) FieldAnalysisRequest |
FieldAnalysisRequestHandler.resolveAnalysisRequest(SolrQueryRequest req)
Resolves the AnalysisRequest based on the parameters in the given SolrParams.
|
Modifier and Type | Method and Description |
---|---|
private NamedList<NamedList> |
FieldAnalysisRequestHandler.analyzeValues(FieldAnalysisRequest analysisRequest,
FieldType fieldType,
java.lang.String fieldName)
Analyzes the index value (if it exists) and the query value (if it exists) in the given AnalysisRequest, using
the Analyzers of the given field type.
|
protected NamedList<NamedList> |
FieldAnalysisRequestHandler.handleAnalysisRequest(FieldAnalysisRequest request,
IndexSchema schema)
Handles the resolved analysis request and returns the analysis breakdown response as a named list.
|