Packages

sealed trait Literal extends PrimaryExpr

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Literal
  2. PrimaryExpr
  3. SimplePostfixExpr
  4. PostfixExpr
  5. StepExpr
  6. SimpleRelativePathExpr
  7. RelativePathExpr
  8. PathExpr
  9. SimpleSimpleMapExpr
  10. SimpleMapExpr
  11. ValueExpr
  12. SimpleUnaryExpr
  13. UnaryExpr
  14. SimpleArrowExpr
  15. ArrowExpr
  16. SimpleCastExpr
  17. CastExpr
  18. SimpleCastableExpr
  19. CastableExpr
  20. SimpleTreatExpr
  21. TreatExpr
  22. SimpleInstanceOfExpr
  23. InstanceOfExpr
  24. SimpleIntersectExceptExpr
  25. IntersectExceptExpr
  26. SimpleUnionExpr
  27. UnionExpr
  28. SimpleMultiplicativeExpr
  29. MultiplicativeExpr
  30. SimpleAdditiveExpr
  31. AdditiveExpr
  32. SimpleRangeExpr
  33. RangeExpr
  34. SimpleStringConcatExpr
  35. StringConcatExpr
  36. SimpleComparisonExpr
  37. ComparisonExpr
  38. SimpleAndExpr
  39. AndExpr
  40. SimpleOrExpr
  41. OrExpr
  42. ExprSingle
  43. SimpleExpr
  44. Expr
  45. XPathExpr
  46. XPathElem
  47. ElemLike
  48. ElemApi
  49. AnyRef
  50. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def children: IndexedSeq[XPathElem]

    Returns the (immediate) child elements of this element.

    Returns the (immediate) child elements of this element.

    Definition Classes
    XPathElemElemLikeElemApi

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def filterElems(p: (XPathElem) => Boolean): IndexedSeq[XPathElem]

    Finds all descendant elements obeying the given predicate.

    Finds all descendant elements obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  9. final def filterElemsOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): IndexedSeq[A]

    Finds all descendant elements of the given element type obeying the given predicate.

    Finds all descendant elements of the given element type obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  10. final def filterElemsOrSelf(p: (XPathElem) => Boolean): IndexedSeq[XPathElem]

    Finds all descendant-or-self elements obeying the given predicate.

    Finds all descendant-or-self elements obeying the given predicate. This is a core method in that several methods are implemented directly or indirectly in terms of this one.

    Definition Classes
    ElemLikeElemApi
  11. final def filterElemsOrSelfOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): IndexedSeq[A]

    Finds all descendant-or-self elements of the given element type obeying the given predicate.

    Finds all descendant-or-self elements of the given element type obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  12. final def findAllElems: IndexedSeq[XPathElem]

    Finds all descendant elements.

    Finds all descendant elements.

    Definition Classes
    ElemLikeElemApi
  13. final def findAllElemsOfType[A <: XPathElem](cls: ClassTag[A]): IndexedSeq[A]

    Finds all descendant elements of the given element type.

    Finds all descendant elements of the given element type.

    Definition Classes
    ElemLikeElemApi
  14. final def findAllElemsOrSelf: IndexedSeq[XPathElem]

    Finds all descendant-or-self elements.

    Finds all descendant-or-self elements.

    Definition Classes
    ElemLikeElemApi
  15. final def findAllElemsOrSelfOfType[A <: XPathElem](cls: ClassTag[A]): IndexedSeq[A]

    Finds all descendant-or-self elements of the given element type.

    Finds all descendant-or-self elements of the given element type.

    Definition Classes
    ElemLikeElemApi
  16. final def findAllTopmostElemsOfType[A <: XPathElem](cls: ClassTag[A]): IndexedSeq[A]

    Finds all topmost descendant elements of the given element type.

    Finds all topmost descendant elements of the given element type.

    Definition Classes
    ElemLikeElemApi
  17. final def findAllTopmostElemsOrSelfOfType[A <: XPathElem](cls: ClassTag[A]): IndexedSeq[A]

    Finds all topmost descendant-or-self elements of the given element type.

    Finds all topmost descendant-or-self elements of the given element type.

    Definition Classes
    ElemLikeElemApi
  18. final def findElem(p: (XPathElem) => Boolean): Option[XPathElem]

    Finds the first descendant element obeying the given predicate, if any, returning an optional result.

    Finds the first descendant element obeying the given predicate, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  19. final def findElemOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): Option[A]

    Finds the first descendant element of the given element type obeying the given predicate, if any, returning an optional result.

    Finds the first descendant element of the given element type obeying the given predicate, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  20. final def findElemOrSelf(p: (XPathElem) => Boolean): Option[XPathElem]

    Finds the first descendant-or-self element obeying the given predicate, if any, returning an optional result.

    Finds the first descendant-or-self element obeying the given predicate, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  21. final def findElemOrSelfOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): Option[A]

    Finds the first descendant-or-self element of the given element type obeying the given predicate, if any, returning an optional result.

    Finds the first descendant-or-self element of the given element type obeying the given predicate, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  22. final def findFirstElemOfType[A <: XPathElem](cls: ClassTag[A]): Option[A]

    Finds the first descendant element of the given element type, if any, returning an optional result.

    Finds the first descendant element of the given element type, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  23. final def findFirstElemOrSelfOfType[A <: XPathElem](cls: ClassTag[A]): Option[A]

    Finds the first descendant-or-self element of the given element type, if any, returning an optional result.

    Finds the first descendant-or-self element of the given element type, if any, returning an optional result.

    Definition Classes
    ElemLikeElemApi
  24. final def findTopmostElems(p: (XPathElem) => Boolean): IndexedSeq[XPathElem]

    Finds all topmost descendant elements obeying the given predicate.

    Finds all topmost descendant elements obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  25. final def findTopmostElemsOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): IndexedSeq[A]

    Finds all topmost descendant elements of the given element type obeying the given predicate.

    Finds all topmost descendant elements of the given element type obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  26. final def findTopmostElemsOrSelf(p: (XPathElem) => Boolean): IndexedSeq[XPathElem]

    Finds all topmost elements-or-self obeying the given predicate.

    Finds all topmost elements-or-self obeying the given predicate. This is a core method in that several methods are implemented directly or indirectly in terms of this one.

    Definition Classes
    ElemLikeElemApi
  27. final def findTopmostElemsOrSelfOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) => Boolean): IndexedSeq[A]

    Finds all topmost descendant-or-self elements of the given element type obeying the given predicate.

    Finds all topmost descendant-or-self elements of the given element type obeying the given predicate.

    Definition Classes
    ElemLikeElemApi
  28. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from PrimaryExpr

Inherited from SimplePostfixExpr

Inherited from PostfixExpr

Inherited from StepExpr

Inherited from SimpleRelativePathExpr

Inherited from RelativePathExpr

Inherited from PathExpr

Inherited from SimpleSimpleMapExpr

Inherited from SimpleMapExpr

Inherited from ValueExpr

Inherited from SimpleUnaryExpr

Inherited from UnaryExpr

Inherited from SimpleArrowExpr

Inherited from ArrowExpr

Inherited from SimpleCastExpr

Inherited from CastExpr

Inherited from SimpleCastableExpr

Inherited from CastableExpr

Inherited from SimpleTreatExpr

Inherited from TreatExpr

Inherited from SimpleInstanceOfExpr

Inherited from InstanceOfExpr

Inherited from IntersectExceptExpr

Inherited from SimpleUnionExpr

Inherited from UnionExpr

Inherited from MultiplicativeExpr

Inherited from SimpleAdditiveExpr

Inherited from AdditiveExpr

Inherited from SimpleRangeExpr

Inherited from RangeExpr

Inherited from SimpleStringConcatExpr

Inherited from StringConcatExpr

Inherited from SimpleComparisonExpr

Inherited from ComparisonExpr

Inherited from SimpleAndExpr

Inherited from AndExpr

Inherited from SimpleOrExpr

Inherited from OrExpr

Inherited from ExprSingle

Inherited from SimpleExpr

Inherited from Expr

Inherited from XPathExpr

Inherited from XPathElem

Inherited from ElemLike[XPathElem]

Inherited from ElemApi[XPathElem]

Inherited from AnyRef

Inherited from Any

Ungrouped