Package

com.getjenny.analyzer

analyzers

Permalink

package analyzers

Visibility
  1. Public
  2. All

Type Members

  1. abstract class AbstractParser extends AnyRef

    Permalink

    Created by mal on 20/02/2017.

  2. case class AnalyzerCommandException(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable

    Permalink
  3. case class AnalyzerEvaluationException(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable

    Permalink
  4. case class AnalyzerInitializationException(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable

    Permalink

    Created by Angelo Leto <[email protected]> on 03/03/17.

  5. case class AnalyzerParsingException(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable

    Permalink
  6. class DefaultAnalyzer extends DefaultParser

    Permalink
  7. abstract class DefaultParser extends AbstractParser

    Permalink

    All sentences with more than 22 characters and with keywords "password" and either "lost" or "forgot"

    All sentences with more than 22 characters and with keywords "password" and either "lost" or "forgot"

    and(regex(".{22,}"), and(or(keyword("forgot"), keyword("lost")), keyword("password")))

    but also:

    or(similar("lost password"), similar("forgot password"))

    In the latter case "or" is treated as disjunction of probabilities

Ungrouped