object JsonPath
The AST for a json-path. Basically follows the specification at http://goessner.net/articles/JsonPath/
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonPath
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- sealed trait BinOpPredicate extends Predicate
- case class ByField (name: String) extends Projection with Product with Serializable
- case class ByIndex (idx: Int) extends Projection with Product with Serializable
- case class ByPredicate (expr: Predicate) extends Projection with Product with Serializable
- case class Constant (value: JsValue) extends SimpleExpr with Product with Serializable
- case class Eq (expr1: Expr, expr2: SimpleExpr) extends BinOpPredicate with Product with Serializable
- case class Exists (path: Path) extends Predicate with Product with Serializable
- sealed trait Expr extends AnyRef
- case class Gt (expr1: Expr, expr2: SimpleExpr) extends BinOpPredicate with Product with Serializable
- case class Lt (expr1: Expr, expr2: SimpleExpr) extends BinOpPredicate with Product with Serializable
- sealed trait Path extends AnyRef
- case class PathExpr (path: Path) extends Expr with Product with Serializable
- sealed trait Predicate extends AnyRef
- sealed trait Projection extends AnyRef
- case class Selection (previous: Path, projection: Projection) extends Path with Product with Serializable
- sealed trait SimpleExpr extends Expr
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object AllElements extends Projection with Product with Serializable
- object Root extends Path with Product with Serializable