Class NlpResult
java.lang.Object
com.restfb.types.webhook.messaging.NlpResult
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
convertRawEntites
(JsonMapper mapper) returns the complete list of all found entities.<T extends BaseNlpEntity>
List<T>getEntities
(Class<T> clazz) returns a subset of the found entities.returns the complete list of all found errorsboolean
checks if the returned JSON contains the error field
-
Constructor Details
-
NlpResult
public NlpResult()
-
-
Method Details
-
convertRawEntites
-
getEntities
returns the complete list of all found entities.- Returns:
- the complete list of all found entities.
-
getErrors
returns the complete list of all found errors- Returns:
- the complete list of all found errors
-
hasErrors
checks if the returned JSON contains the error field- Returns:
true
if the NLP result found errors,false
otherwise
-
getEntities
returns a subset of the found entities. Only entities that are of typeT
are returned. T needs to extend theBaseNlpEntity
.- Parameters:
clazz
- the filter class- Returns:
- List of entites, only the filtered elements are returned.
-