| Package | Description |
|---|---|
| iot.jcypher.query.api.collection | |
| iot.jcypher.query.factories.xpression |
| Modifier and Type | Method and Description |
|---|---|
CFrom<CWhere> |
Collection.FILTER()
JCYPHER
return all the elements in a collection that hold true for a predicate expression
e.g. ...
|
static CFrom<CWhere> |
CFactory.FILTER() |
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) |
| Modifier and Type | Method and Description |
|---|---|
static CFrom<CWhere> |
C.FILTER()
JCYPHER
return all the elements in a collection that hold true for a predicate expression
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.