object SplitPatternParser
Parses patterns into splits
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SplitPatternParser
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class AlphaPattern(start: Char, end: Char) extends SplitPattern with Product with Serializable
- case class CompositePattern(patterns: Seq[SplitPattern]) extends SplitPattern with Product with Serializable
- case class DatePattern(from: Date, to: Date, ranges: Int) extends SplitPattern with Product with Serializable
- case class NegativePatterns(tiers: Seq[SplitPattern]) extends SplitPattern with Product with Serializable
- case class NumericPattern(start: Byte, end: Byte) extends SplitPattern with Product with Serializable
- sealed trait SplitPattern extends AnyRef
- case class TieredPatterns(tiers: Seq[SplitPattern]) extends SplitPattern with Product with Serializable
Value Members
-
def
parse(pattern: String, report: Boolean): SplitPattern
- Annotations
- @throws( classOf[ParsingException] )
-
def
parse(pattern: String): SplitPattern
- Annotations
- @throws( classOf[ParsingException] )