object AST

Originally contributed by Nicolas Rémond.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AST
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait ArrayAccessor extends PathToken
  2. final case class ArrayRandomAccess(indices: List[Int]) extends ArrayAccessor with Product with Serializable
  3. final case class ArraySlice(start: Option[Int], stop: Option[Int], step: Int) extends ArrayAccessor with Product with Serializable

    Slicing of an array, indices start at zero

    Slicing of an array, indices start at zero

    start

    is the first item that you want (of course)

    stop

    is the first item that you do not want

  4. sealed trait AstToken extends Product with Serializable
  5. final case class BooleanFilter(operator: BinaryBooleanOperator, lhs: FilterToken, rhs: FilterToken) extends FilterToken with Product with Serializable
  6. final case class ComparisonFilter(operator: ComparisonOperator, lhs: FilterValue, rhs: FilterValue) extends FilterToken with Product with Serializable
  7. final case class Field(name: String) extends FieldAccessor with Product with Serializable
  8. sealed trait FieldAccessor extends PathToken
  9. final case class FilterDirectValue(node: JsonNode) extends FilterValue with Product with Serializable
  10. sealed trait FilterToken extends PathToken
  11. sealed trait FilterValue extends AstToken
  12. final case class HasFilter(query: SubQuery) extends FilterToken with Product with Serializable
  13. final case class MultiField(names: List[String]) extends FieldAccessor with Product with Serializable
  14. sealed trait PathToken extends AstToken
  15. final case class RecursiveField(name: String) extends FieldAccessor with Product with Serializable
  16. final case class RecursiveFilterToken(filter: FilterToken) extends PathToken with Product with Serializable
  17. final case class SubQuery(path: List[PathToken]) extends FilterValue with Product with Serializable

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()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  19. case object AnyField extends FieldAccessor with Product with Serializable
  20. object ArraySlice extends Serializable
  21. case object CurrentNode extends PathToken with Product with Serializable
  22. object FilterDirectValue extends Serializable
  23. case object RecursiveAnyField extends FieldAccessor with Product with Serializable
  24. case object RootNode extends FieldAccessor with Product with Serializable

Deprecated Value Members

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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped