object LookupInSpec
Methods to allow creating a sequence of LookupInSpec
for providing to a lookupIn
SubDocument method.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LookupInSpec
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
count(path: String): Count
Gets the count of a path in a JSON document.
Gets the count of a path in a JSON document. This only applies to JSON object and array fields.
- path
a valid path in the document, such as "foo.bar"
-
def
exists(path: String): Exists
Checks if a path exists in a JSON document.
Checks if a path exists in a JSON document.
- path
a valid path in the document, such as "foo.bar"
-
def
get(path: String): Get
Gets a field from a JSON document.
Gets a field from a JSON document.
To fetch the full document, use an empty path of "".
- path
a valid path in the document, such as "foo.bar"