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 anunmodifiableList ofCategoryAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).Returns aunmodifiableList ofTemplateAnalyzerDecisions for the confirmation template containing the results of preceding Apps.Returns anunmodifiablelist ofContactAnalyzerDecisions backed by the results of preceding apps.
The list is sorted by the natural ordering of the decisions (ordered byconfidencevalue).Returns anunmodifiableList ofLanguageAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).Returns anunmodifiableList ofLocationAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).Returns anunmodifiableList ofRoutingTagAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered by RoutingTag andconfidencevalue).Returns aunmodifiableList ofTemplateAnalyzerDecisions for the suggestion template containing the results of preceding Apps.
-
Method Details
-
getCategoryDecisions
List<CategoryAnalyzerDecision> getCategoryDecisions()Returns anunmodifiableList ofCategoryAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).- Returns:
- the List of
CategoryAnalyzerDecisions of preceding Apps. - Since:
- 11.15
- See Also:
-
getLanguageDecisions
List<LanguageAnalyzerDecision> getLanguageDecisions()Returns anunmodifiableList ofLanguageAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).- Returns:
- the List of
LanguageAnalyzerDecisions of preceding Apps. - Since:
- 11.15
- See Also:
-
getLocationDecisions
List<LocationAnalyzerDecision> getLocationDecisions()Returns anunmodifiableList ofLocationAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).- Returns:
- the List of
LocationAnalyzerDecisions of preceding Apps. - Since:
- 11.15
- See Also:
-
getRoutingTagDecisions
List<RoutingTagAnalyzerDecision> getRoutingTagDecisions()Returns anunmodifiableList ofRoutingTagAnalyzerDecisions backed by the Results of preceding Apps.
The List is sorted by the natural ordering of the Decisions (ordered by RoutingTag andconfidencevalue).- Returns:
- the List of
RoutingTagAnalyzerDecisions of preceding Apps. - Since:
- 13.2
- See Also:
-
getSuggestionTemplateDecisions
List<TemplateAnalyzerDecision> getSuggestionTemplateDecisions()Returns aunmodifiableList ofTemplateAnalyzerDecisions for the suggestion template containing the results of preceding Apps. The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).- Returns:
- the List of
TemplateAnalyzerDecisions of preceding Apps. - Since:
- 12.31
- See Also:
-
getConfirmationTemplateDecisions
List<TemplateAnalyzerDecision> getConfirmationTemplateDecisions()Returns aunmodifiableList ofTemplateAnalyzerDecisions for the confirmation template containing the results of preceding Apps. The List is sorted by the natural ordering of the Decisions (ordered byconfidencevalue).- Returns:
- the List of
TemplateAnalyzerDecisions of preceding Apps. - Since:
- 12.31
- See Also:
-
getContactAnalyzerDecisions
List<ContactAnalyzerDecision> getContactAnalyzerDecisions()Returns anunmodifiablelist ofContactAnalyzerDecisions backed by the results of preceding apps.
The list is sorted by the natural ordering of the decisions (ordered byconfidencevalue).- Returns:
- the list of
ContactAnalyzerDecisions of preceding apps. - Since:
- 12.41
- See Also:
-