Packages

object SplitPatternParser

Parses patterns into splits

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SplitPatternParser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class AlphaPattern(start: Char, end: Char) extends SplitPattern with Product with Serializable
  2. case class CompositePattern(patterns: Seq[SplitPattern]) extends SplitPattern with Product with Serializable
  3. case class DatePattern(from: Date, to: Date, ranges: Int) extends SplitPattern with Product with Serializable
  4. case class NegativePatterns(tiers: Seq[SplitPattern]) extends SplitPattern with Product with Serializable
  5. case class NumericPattern(start: Byte, end: Byte) extends SplitPattern with Product with Serializable
  6. sealed trait SplitPattern extends AnyRef
  7. case class TieredPatterns(tiers: Seq[SplitPattern]) extends SplitPattern with Product with Serializable

Value Members

  1. def parse(pattern: String, report: Boolean): SplitPattern
    Annotations
    @throws( classOf[ParsingException] )
  2. def parse(pattern: String): SplitPattern
    Annotations
    @throws( classOf[ParsingException] )