Class AnalysisResponseBase.AnalysisPhase
- java.lang.Object
-
- org.apache.solr.client.solrj.response.AnalysisResponseBase.AnalysisPhase
-
- Enclosing class:
- AnalysisResponseBase
public static class AnalysisResponseBase.AnalysisPhase extends Object
A phase in the analysis process. The phase holds the tokens produced in this phase and the name of the class that produced them.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClassName()
The name of the class (analyzer, tokenzier, or filter) that produced the token stream for this phase.List<AnalysisResponseBase.TokenInfo>
getTokens()
Returns a list of tokens which represent the token stream produced in this phase.
-
-
-
Method Detail
-
getClassName
public String getClassName()
The name of the class (analyzer, tokenzier, or filter) that produced the token stream for this phase.- Returns:
- The name of the class that produced the token stream for this phase.
-
getTokens
public List<AnalysisResponseBase.TokenInfo> getTokens()
Returns a list of tokens which represent the token stream produced in this phase.- Returns:
- A list of tokens which represent the token stream produced in this phase.
-
-