object
JsonPath extends AnyRef
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: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
object
AllElements extends Projection with Product with Serializable
-
object
Root extends Path with Product with Serializable
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
The AST for a json-path. Basically follows the specification at http://goessner.net/articles/JsonPath/