answer abstract method

List<QaAnswer> answer(
  1. String context,
  2. String question
)

Answers question based on context, and returns a list of possible QaAnswers. Could be empty if no answer was found from the given context.

Implementation

List<QaAnswer> answer(String context, String question);