io.dylemma.xml

Matcher

trait Matcher[+A] extends ContextMatchSplitter[A]

Self Type
Matcher[A]
Source
Matcher.scala
Linear Supertypes
ContextMatchSplitter[A], Splitter[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Matcher
  2. ContextMatchSplitter
  3. Splitter
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(input: IterateeHelpers.OpenTag): Result[A]

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def %(attribute: String): Parser[String]

    Definition Classes
    Splitter
    Annotations
    @inline()
  5. def %?(attribute: String): Parser[Option[String]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  6. def &[B, AB](that: Matcher[B])(implicit rc: ContextCombiner[A, B, AB]): Matcher[AB]

  7. def /[B, AB](that: Matcher[B])(implicit rc: ContextCombiner[A, B, AB]): ListMatcher[AB]

  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. def andExtractName[AB](implicit rc: ContextCombiner[A, String, AB]): Matcher[AB]

    Creates a tag matcher that will additionally return the name of the matched tag.

    Creates a tag matcher that will additionally return the name of the matched tag. Uses ContextCombiner rules to determine the returned matcher's type by combining this matcher's type with String (the name of the tag).

    AB

    The output type when combining A and String

    rc

    The result combiner for this matcher's type and String

  11. def as[Out](implicit innerParser: ParserBase[A, Out]): Parser[Out]

    Definition Classes
    Splitter
    Annotations
    @inline()
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def asList[Out](implicit innerParser: ParserBase[A, Out]): Parser[List[Out]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  14. def asOptional[Out](implicit innerParser: ParserBase[A, Out]): Parser[Option[Out]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  15. def attr(attribute: String): Parser[String]

    Definition Classes
    Splitter
    Annotations
    @inline()
  16. def attrOpt(attribute: String): Parser[Option[String]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  20. def extractName: Matcher[String]

    Creates a tag matcher that, as long as this matcher gets a successful match, will throw out the successful result and replace it with the name of the element being matched.

  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def foreach[Out](thunk: (Out) ⇒ Unit)(implicit innerParser: ParserBase[A, Out]): Parser[Unit]

    Definition Classes
    Splitter
    Annotations
    @inline()
  23. def foreachResult[Out](thunk: (Result[Out]) ⇒ Unit)(implicit innerParser: ParserBase[A, Out]): Parser[Unit]

    Definition Classes
    Splitter
    Annotations
    @inline()
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. def mapContext[In2](f: (A) ⇒ In2): Splitter[In2]

    Definition Classes
    Splitter
  28. def matchContext(context: List[IterateeHelpers.OpenTag]): Result[A]

    Definition Classes
    MatcherContextMatchSplitter
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def text: Transformer[String]

    Definition Classes
    Splitter
    Annotations
    @inline()
  34. def textConcat: Parser[String]

    Definition Classes
    Splitter
    Annotations
    @inline()
  35. def textList: Parser[List[String]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  36. def textOption: Parser[Option[String]]

    Definition Classes
    Splitter
    Annotations
    @inline()
  37. def through[Out](innerParser: ParserBase[A, Out]): Transformer[Out]

    Definition Classes
    ContextMatchSplitterSplitter
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. def |[A1 >: A](that: Matcher[A1]): Matcher[A1]

Inherited from ContextMatchSplitter[A]

Inherited from Splitter[A]

Inherited from AnyRef

Inherited from Any

Ungrouped