Packages

trait SingleElementContextMatcher[+A] extends ContextMatcher[StartElement, A]

Specialization of ContextMatcher which only checks the first element in the stack for matching operations. Transformation operations on single-element matchers will yield other single-element matchers (rather than the base ContextMatcher type). Combination operations involving other single-element matchers will also yield single-element matchers. SingleElementContextMatchers form the building blocks of more complex matchers.

A

The type of the matched context.

Source
SingleElementContextMatcher.scala
Linear Supertypes
ContextMatcher[StartElement, A], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SingleElementContextMatcher
  2. ContextMatcher
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def applyElem(elem: StartElement): Option[A]

    The matching operation for single-element matchers.

    The matching operation for single-element matchers.

    elem

    The first element in the XML tag stack

    returns

    Some(context) for a successful match, None otherwise

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &[A1 >: A, B, R](that: SingleElementContextMatcher[B])(implicit reduce: Aux[A1, B, R]): SingleElementContextMatcher[R]

    Operator version of and

  4. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toany2stringadd[SingleElementContextMatcher[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (SingleElementContextMatcher[A], B)
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toArrowAssoc[SingleElementContextMatcher[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def \[A1 >: A, B, R](next: ContextMatcher[StartElement, B])(implicit reduce: Aux[A1, B, R]): ContextMatcher[StartElement, R]
    Definition Classes
    ContextMatcher
  8. def and[A1 >: A, B, R](that: SingleElementContextMatcher[B])(implicit reduce: Aux[A1, B, R]): SingleElementContextMatcher[R]

    Creates a new single-element matcher which combines the results of both this matcher and that matcher.

    Creates a new single-element matcher which combines the results of both this matcher and that matcher. Both this and that will operate on the first element of the stack (as opposed to Chained matchers).

    A1

    To satisfy covariance on A

    B

    The other matcher's result type

    R

    The combined result type

    that

    The matcher to combine

    reduce

    The TypeReduce rule for combining the two match results

    returns

    A new matcher which combines the results of this and that

  9. def apply(stack: IndexedSeq[StartElement], offset: Int, avail: Int): Option[A]
    Definition Classes
    ContextMatcher
  10. def applyChained[B](stack: IndexedSeq[StartElement], offset: Int, avail: Int, next: ContextMatcher[StartElement, B]): Option[(A, B)]
    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. def ensuring(cond: (SingleElementContextMatcher[A]) => Boolean, msg: => Any): SingleElementContextMatcher[A]
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toEnsuring[SingleElementContextMatcher[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (SingleElementContextMatcher[A]) => Boolean): SingleElementContextMatcher[A]
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toEnsuring[SingleElementContextMatcher[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: => Any): SingleElementContextMatcher[A]
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toEnsuring[SingleElementContextMatcher[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): SingleElementContextMatcher[A]
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toEnsuring[SingleElementContextMatcher[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. def filter(p: (A) => Boolean): SingleElementContextMatcher[A]
    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. def flatMap[B](f: (A) => Option[B]): SingleElementContextMatcher[B]
    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toStringFormat[SingleElementContextMatcher[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def map[B](f: (A) => B): SingleElementContextMatcher[B]
    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def or[A2 >: A](that: SingleElementContextMatcher[A2]): SingleElementContextMatcher[A2]

    Specialization of the default or method, specifically for SingleElementContextMatchers

  31. def or[A2 >: A](that: ContextMatcher[StartElement, A2]): ContextMatcher[StartElement, A2]
    Definition Classes
    ContextMatcher
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. def |[A2 >: A](that: SingleElementContextMatcher[A2]): SingleElementContextMatcher[A2]

    Operator version of or, specialized for SingleElementContextMatchers

  38. def |[A2 >: A](that: ContextMatcher[StartElement, A2]): ContextMatcher[StartElement, A2]
    Definition Classes
    ContextMatcher

Deprecated Value Members

  1. def [B](y: B): (SingleElementContextMatcher[A], B)
    Implicit
    This member is added by an implicit conversion from SingleElementContextMatcher[A] toArrowAssoc[SingleElementContextMatcher[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from ContextMatcher[StartElement, A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromSingleElementContextMatcher[A] to any2stringadd[SingleElementContextMatcher[A]]

Inherited by implicit conversion StringFormat fromSingleElementContextMatcher[A] to StringFormat[SingleElementContextMatcher[A]]

Inherited by implicit conversion Ensuring fromSingleElementContextMatcher[A] to Ensuring[SingleElementContextMatcher[A]]

Inherited by implicit conversion ArrowAssoc fromSingleElementContextMatcher[A] to ArrowAssoc[SingleElementContextMatcher[A]]

Ungrouped