object Regex
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Regex
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Alphanumeric(reversed: Boolean) extends Regex with Product with Serializable
- final case class AndThen(first: Regex, second: Regex) extends Regex with Product with Serializable
- final case class CharacterSet(set: Set[Regex], reversed: Boolean) extends Regex with Product with Serializable
- final case class Digit(reversed: Boolean) extends Regex with Product with Serializable
- final case class Literal(char: Char) extends Regex with Product with Serializable
- final case class OrElse(first: Regex, second: Regex) extends Regex with Product with Serializable
- final case class Range(start: Char, end: Char, reversed: Boolean) extends Regex with Product with Serializable
- final case class Repeat(regex: Regex, min: Option[Int], max: Option[Int]) extends Regex with Product with Serializable
- final case class Whitespace(reversed: Boolean) extends Regex with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val alphanumeric: Regex
- val anyChar: Regex
- def anyCharOf(first: Char, second: Char, rest: Char*): Regex
- def anyRegexOf(first: Regex, second: Regex, rest: Regex*): Regex
- val anything: Regex
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val digit: Regex
- val end: Regex
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def inRange(start: Char, end: Char): Regex
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def literal(str: String): Regex
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val nonAlphanumeric: Regex
- val nonDigit: Regex
- val nonWhitespace: Regex
- def notAnyCharOf(first: Char, second: Char, rest: Char*): Regex
- def notAnyRegexOf(first: Regex, second: Regex, rest: Regex*): Regex
- def notInRange(start: Char, end: Char): Regex
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val start: Regex
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- val whitespace: Regex
- case object AnyChar extends Regex with Product with Serializable
- case object Anything extends Regex with Product with Serializable
- case object End extends Regex with Product with Serializable
- case object Start extends Regex with Product with Serializable