Class

eu.cdevreeze.xpathparser.ast

UnaryLookup

Related Doc: package ast

Permalink

final case class UnaryLookup(keySpecifier: KeySpecifier) extends PrimaryExpr with Product with Serializable

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

Instance Constructors

  1. new UnaryLookup(keySpecifier: KeySpecifier)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def children: IndexedSeq[XPathElem]

    Permalink

    Returns the (immediate) child elements of this element.

    Returns the (immediate) child elements of this element.

    Definition Classes
    UnaryLookupXPathElemElemLikeElemApi
  6. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  8. final def filterElems(p: (XPathElem) ⇒ Boolean): IndexedSeq[XPathElem]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def findAllElems: IndexedSeq[XPathElem]

    Permalink

    Finds all descendant elements.

    Finds all descendant elements.

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

    Permalink

    Finds all descendant elements of the given element type.

    Finds all descendant elements of the given element type.

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

    Permalink

    Finds all descendant-or-self elements.

    Finds all descendant-or-self elements.

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

    Permalink

    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
  17. final def findAllTopmostElemsOfType[A <: XPathElem](cls: ClassTag[A]): IndexedSeq[A]

    Permalink

    Finds all topmost descendant elements of the given element type.

    Finds all topmost descendant elements of the given element type.

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

    Permalink

    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
  19. final def findElem(p: (XPathElem) ⇒ Boolean): Option[XPathElem]

    Permalink

    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
  20. final def findElemOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) ⇒ Boolean): Option[A]

    Permalink

    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
  21. final def findElemOrSelf(p: (XPathElem) ⇒ Boolean): Option[XPathElem]

    Permalink

    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
  22. final def findElemOrSelfOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) ⇒ Boolean): Option[A]

    Permalink

    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
  23. final def findFirstElemOfType[A <: XPathElem](cls: ClassTag[A]): Option[A]

    Permalink

    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
  24. final def findFirstElemOrSelfOfType[A <: XPathElem](cls: ClassTag[A]): Option[A]

    Permalink

    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
  25. final def findTopmostElems(p: (XPathElem) ⇒ Boolean): IndexedSeq[XPathElem]

    Permalink

    Finds all topmost descendant elements obeying the given predicate.

    Finds all topmost descendant elements obeying the given predicate.

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

    Permalink

    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
  27. final def findTopmostElemsOrSelf(p: (XPathElem) ⇒ Boolean): IndexedSeq[XPathElem]

    Permalink

    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
  28. final def findTopmostElemsOrSelfOfType[A <: XPathElem](cls: ClassTag[A])(p: (A) ⇒ Boolean): IndexedSeq[A]

    Permalink

    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
  29. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    Any
  31. val keySpecifier: KeySpecifier

    Permalink
  32. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

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 SimpleIntersectExceptExpr

Inherited from IntersectExceptExpr

Inherited from SimpleUnionExpr

Inherited from UnionExpr

Inherited from SimpleMultiplicativeExpr

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