| Package | Description |
|---|---|
| iot.jcypher.query.api.collection | |
| iot.jcypher.query.factories.clause | |
| iot.jcypher.query.factories.xpression |
| Modifier and Type | Method and Description |
|---|---|
static InCollection<EachDoConcat> |
CFactory.element(JcValue jcValue) |
static InCollection<CWhere> |
CFactory.forAll(JcValue jcValue) |
static InCollection<CWhere> |
CFactory.forAny(JcValue jcValue) |
static InCollection<CWhere> |
CFactory.forNone(JcValue jcValue) |
static InCollection<CWhere> |
CFactory.forSingle(JcValue jcValue) |
InCollection<T> |
CFrom.fromAll(JcValue jcValue)
JCYPHER
define a variable (a JcValue or a subclass like JcNode) to iterate over a collection
e.g. ...
|
| Modifier and Type | Method and Description |
|---|---|
static InCollection<EachDoConcat> |
FOR_EACH.element(JcValue jcValue)
JCYPHER
define a variable (a JcValue or a subclass like JcNode) to iterate over a collection
e.g. ...FOR_EACH.
|
| Modifier and Type | Method and Description |
|---|---|
static InCollection<EachDoConcat> |
F.element(JcValue jcValue)
JCYPHER
define a variable (a JcValue or a subclass like JcNode) to iterate over a collection
e.g. ...
|
static InCollection<CWhere> |
I.forAll(JcValue jcValue)
JCYPHER
all elements of the collection must hold true for a predicate expression
e.g. ...holdsTrue(I.
|
static InCollection<CWhere> |
I.forAny(JcValue jcValue)
JCYPHER
at least one element of the collection must hold true for a predicate expression
e.g. ...holdsTrue(I.
|
static InCollection<CWhere> |
I.forNone(JcValue jcValue)
JCYPHER
no element of the collection may hold true for a predicate expression
e.g. ...holdsTrue(I.
|
static InCollection<CWhere> |
I.forSingle(JcValue jcValue)
JCYPHER
exactly one element of the collection must hold true for a predicate expression
e.g. ...holdsTrue(I.
|
Copyright © 2016. All rights reserved.