io.dylemma.spac.xml.SingleElementContextMatcher

Or

case class Or[A](left: SingleElementContextMatcher[A], right: SingleElementContextMatcher[A]) extends SingleElementContextMatcher[A] with Product with Serializable

Similar to ContextMatcher.Or, but specialized for SingleElementContextMatcher

Source
SingleElementContextMatcher.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, SingleElementContextMatcher[A], ContextMatcher[StartElement, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Or
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. SingleElementContextMatcher
  7. ContextMatcher
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Or(left: SingleElementContextMatcher[A], right: SingleElementContextMatcher[A])

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 &[A1 >: A, B, R](that: SingleElementContextMatcher[B])(implicit reduce: Aux[A1, B, R]): SingleElementContextMatcher[R]

    Operator version of and

    Operator version of and

    Definition Classes
    SingleElementContextMatcher
  5. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Or[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  6. def ->[B](y: B): (Or[A], B)

    Implicit information
    This member is added by an implicit conversion from Or[A] to ArrowAssoc[Or[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  9. def \[A1 >: A, B, R](next: ContextMatcher[StartElement, B])(implicit reduce: Aux[A1, B, R]): ContextMatcher[StartElement, R]

    Definition Classes
    ContextMatcher
  10. 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

    Definition Classes
    SingleElementContextMatcher
  11. def apply(stack: IndexedSeq[StartElement], offset: Int, avail: Int): Option[A]

    Definition Classes
    ContextMatcher
  12. def applyChained[B](stack: IndexedSeq[StartElement], offset: Int, avail: Int, next: ContextMatcher[StartElement, B]): Option[(A, B)]

    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  13. 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

    Definition Classes
    OrSingleElementContextMatcher
  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def ensuring(cond: (Or[A]) ⇒ Boolean, msg: ⇒ Any): Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to Ensuring[Or[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (Or[A]) ⇒ Boolean): Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to Ensuring[Or[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to Ensuring[Or[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to Ensuring[Or[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def filter(p: (A) ⇒ Boolean): SingleElementContextMatcher[A]

    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def flatMap[B](f: (A) ⇒ Option[B]): SingleElementContextMatcher[B]

    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  24. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from Or[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]

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

    Definition Classes
    Any
  27. val left: SingleElementContextMatcher[A]

  28. def map[B](f: (A) ⇒ B): SingleElementContextMatcher[B]

    Definition Classes
    SingleElementContextMatcher → ContextMatcher
  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. def or[A2 >: A](that: SingleElementContextMatcher[A2]): SingleElementContextMatcher[A2]

    Specialization of the default or method, specifically for SingleElementContextMatchers

    Specialization of the default or method, specifically for SingleElementContextMatchers

    Definition Classes
    SingleElementContextMatcher
  33. def or[A2 >: A](that: ContextMatcher[StartElement, A2]): ContextMatcher[StartElement, A2]

    Definition Classes
    ContextMatcher
  34. val right: SingleElementContextMatcher[A]

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def |[A2 >: A](that: SingleElementContextMatcher[A2]): SingleElementContextMatcher[A2]

    Operator version of or, specialized for SingleElementContextMatchers

    Operator version of or, specialized for SingleElementContextMatchers

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

    Definition Classes
    ContextMatcher
  42. def [B](y: B): (Or[A], B)

    Implicit information
    This member is added by an implicit conversion from Or[A] to ArrowAssoc[Or[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from Or[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (or: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from Or[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (or: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to ArrowAssoc[Or[A]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (or: ArrowAssoc[Or[A]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: Or[A]

    Implicit information
    This member is added by an implicit conversion from Or[A] to Ensuring[Or[A]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (or: Ensuring[Or[A]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from SingleElementContextMatcher[A]

Inherited from ContextMatcher[StartElement, A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Or[A] to StringAdd

Inherited by implicit conversion any2stringfmt from Or[A] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from Or[A] to ArrowAssoc[Or[A]]

Inherited by implicit conversion any2Ensuring from Or[A] to Ensuring[Or[A]]

Ungrouped