scala.util.regexp
WordExp
class
WordExp
extends Base
Instance Constructors
-
new
WordExp
()
Type Members
-
class
Alt
extends RegExp
-
class
Label
extends AnyRef
-
case class
Letter
(a: _labelT) extends RegExp with Product with Serializable
-
class
Meta
extends RegExp
-
class
RegExp
extends AnyRef
-
class
Sequ
extends RegExp
-
case class
Star
(r: _regexpT) extends RegExp with Product with Serializable
-
case class
Wildcard
() extends RegExp with Product with Serializable
-
type
_labelT
<: Label
-
type
_regexpT
<: RegExp
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
-
object
Alt
extends AnyRef
-
object
Eps
extends RegExp with Product with Serializable
-
object
Letter
extends AbstractFunction1[_labelT, Letter] with Serializable
-
object
Sequ
extends AnyRef
-
object
Star
extends AbstractFunction1[_regexpT, Star] with Serializable
-
object
Wildcard
extends AbstractFunction0[Wildcard] with Serializable
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_ <: java.lang.Object]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_ <: java.lang.Object]
-
def
hashCode
(): Int
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from Any
Value Members
-
-
-
def
asInstanceOf
[T0]
: T0
-
def
isInstanceOf
[T0]
: Boolean
The class
WordExp
provides regular word expressions. Users have to instantiate type member_regexpT <: RegExp
(from classBase
) and a type member_labelT <: Label
. Here is a short example:1.0