Interface IncomingMessageAnalyzerData
-
public interface IncomingMessageAnalyzerData
Represents the current IncomingMessageAnalyzerData, containing several Decisions made by preceding Apps.- Since:
- 11.15
- See Also:
IncomingMessageAnalyzer.analyzeIncomingMessage(IncomingMessageAnalyzerInput)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CategoryAnalyzerDecision>
getCategoryDecisions()
Returns anunmodifiable
List ofCategoryAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).java.util.List<TemplateAnalyzerDecision>
getConfirmationTemplateDecisions()
Returns aunmodifiable
List ofTemplateAnalyzerDecision
s for the confirmation template containing the results of preceding Apps.java.util.List<LanguageAnalyzerDecision>
getLanguageDecisions()
Returns anunmodifiable
List ofLanguageAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).java.util.List<LocationAnalyzerDecision>
getLocationDecisions()
Returns anunmodifiable
List ofLocationAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).java.util.List<TemplateAnalyzerDecision>
getSuggestionTemplateDecisions()
Returns aunmodifiable
List ofTemplateAnalyzerDecision
s for the suggestion template containing the results of preceding Apps.
-
-
-
Method Detail
-
getCategoryDecisions
java.util.List<CategoryAnalyzerDecision> getCategoryDecisions()
Returns anunmodifiable
List ofCategoryAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).- Returns:
- the List of
CategoryAnalyzerDecision
s of preceding Apps. - Since:
- 11.15
- See Also:
AnalyzerDecision.compareTo(AnalyzerDecision)
-
getLanguageDecisions
java.util.List<LanguageAnalyzerDecision> getLanguageDecisions()
Returns anunmodifiable
List ofLanguageAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).- Returns:
- the List of
LanguageAnalyzerDecision
s of preceding Apps. - Since:
- 11.15
- See Also:
AnalyzerDecision.compareTo(AnalyzerDecision)
-
getLocationDecisions
java.util.List<LocationAnalyzerDecision> getLocationDecisions()
Returns anunmodifiable
List ofLocationAnalyzerDecision
s backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).- Returns:
- the List of
LocationAnalyzerDecision
s of preceding Apps. - Since:
- 11.15
- See Also:
AnalyzerDecision.compareTo(AnalyzerDecision)
-
getSuggestionTemplateDecisions
java.util.List<TemplateAnalyzerDecision> getSuggestionTemplateDecisions()
Returns aunmodifiable
List ofTemplateAnalyzerDecision
s for the suggestion template containing the results of preceding Apps. The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).- Returns:
- the List of
TemplateAnalyzerDecision
s of preceding Apps. - Since:
- 12.31
- See Also:
AnalyzerDecision.compareTo(AnalyzerDecision)
-
getConfirmationTemplateDecisions
java.util.List<TemplateAnalyzerDecision> getConfirmationTemplateDecisions()
Returns aunmodifiable
List ofTemplateAnalyzerDecision
s for the confirmation template containing the results of preceding Apps. The List is sorted by the natural ordering of the Decisions (ordered byconfidence
value).- Returns:
- the List of
TemplateAnalyzerDecision
s of preceding Apps. - Since:
- 12.31
- See Also:
AnalyzerDecision.compareTo(AnalyzerDecision)
-
-