Package

com.getjenny.analyzer

util

Permalink

package util

Visibility
  1. Public
  2. All

Type Members

  1. abstract class PatternExtraction extends AnyRef

    Permalink

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

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

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

    Permalink

    Created by angelo on 26/06/17.

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

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

    Permalink
  6. class PatternExtractionRegex extends PatternExtraction

    Permalink

    A generic pattern extraction utility class, it extract named patterns matching a given regex e.g.

    A generic pattern extraction utility class, it extract named patterns matching a given regex e.g. the following will match tree numbers separated by semicolumn: [first,second,third](?:([0-9]+):([0-9]+):([0-9]+)) if the regex matches it will create the entries into the dictionary e.g.: 10:11:12 will result in Map("first.0" -> "10", "second.0" -> "11", "third.0" -> "12") the number at the end of the name is an index incremented for multiple occurrences of the pattern in the query

Value Members

  1. object ComparisonOperators

    Permalink
  2. object RandomNumbers

    Permalink
  3. object Time

    Permalink
  4. object VectorUtils

    Permalink

Ungrouped