public interface ICollection<T>
| Modifier and Type | Method and Description |
|---|---|
T |
IN_labels(JcNode node)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
IN_labels(node) is a convenient shortcut for
IN(node.labels())
|
<E> T |
IN_list(E... value)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
e.g. ...
|
T |
IN_nodes(JcPath path)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
IN_nodes(path) is a convenient shortcut for
IN(path.nodes())
|
T |
IN_relations(JcPath path)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
IN_relations(path) is a convenient shortcut for
IN(path.relations())
|
T |
IN(ICollectExpression C)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
Use Factory Class C to create expressions which construct a collection
e.g. ...
|
T |
IN(JcCollection collection)
JCYPHER
specify a collection in order to iterate over its elements or to test for containment of elements
e.g. ...
|
T IN(ICollectExpression C)
T IN(JcCollection collection)
<E> T IN_list(E... value)
T IN_nodes(JcPath path)
T IN_relations(JcPath path)
Copyright © 2016. All rights reserved.