Interface IncomingMessageAnalyzerData
public interface IncomingMessageAnalyzerData
Represents the current IncomingMessageAnalyzerData, containing several Decisions
made by preceding Apps.
- Since:
- 11.15
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns 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 aunmodifiable
List ofTemplateAnalyzerDecision
s for the confirmation template containing the results of preceding Apps.Returns anunmodifiable
list ofContactAnalyzerDecision
s backed by the results of preceding apps.
The list is sorted by the natural ordering of the decisions (ordered byconfidence
value).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 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 aunmodifiable
List ofTemplateAnalyzerDecision
s for the suggestion template containing the results of preceding Apps.
-
Method Details
-
getCategoryDecisions
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:
-
getLanguageDecisions
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:
-
getLocationDecisions
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:
-
getSuggestionTemplateDecisions
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:
-
getConfirmationTemplateDecisions
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:
-
getContactAnalyzerDecisions
List<ContactAnalyzerDecision> getContactAnalyzerDecisions()Returns anunmodifiable
list ofContactAnalyzerDecision
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
ContactAnalyzerDecision
s of preceding apps. - Since:
- 12.41
- See Also:
-