public class InCollection<T extends APIObject> extends APIObject implements 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())
|
T |
IN_list(Object... 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. ...
|
public T IN(ICollectExpression C)
ICollectionIN in interface ICollection<T extends APIObject>public T IN(JcCollection collection)
ICollectionIN in interface ICollection<T extends APIObject>public T IN_list(Object... value)
ICollectionIN_list in interface ICollection<T extends APIObject>public T IN_nodes(JcPath path)
ICollectionIN_nodes in interface ICollection<T extends APIObject>public T IN_relations(JcPath path)
ICollectionIN_relations in interface ICollection<T extends APIObject>public T IN_labels(JcNode node)
ICollectionIN_labels in interface ICollection<T extends APIObject>Copyright © 2016. All rights reserved.