| Modifier and Type | Method and Description |
|---|---|
Collect |
AbstractDomainQuery.COLLECT(JcProperty attribute)
Collect the specified attribute from all objects in a DomainObjectMatch
|
| Modifier and Type | Method and Description |
|---|---|
JcProperty |
DomainObjectMatch.atttribute(String name)
Access an attribute, don't rely on a specific attribute type
|
| Modifier and Type | Method and Description |
|---|---|
JcProperty |
CollectExpression.getAttribute() |
| Constructor and Description |
|---|
CollectExpression(JcProperty attribute,
AbstractDomainQuery.IntAccess domainQueryIntAccess) |
| Modifier and Type | Method and Description |
|---|---|
DoConcat |
Do.REMOVE(JcProperty property)
JCYPHER
remove a property from a node or relation in the DO part of a FOREACH expression
e.g. ...
|
Set<DoConcat> |
Do.SET(JcProperty property)
JCYPHER
set a property of a node or relation in the DO part of a FOREACH expression
e.g. ...
|
| Modifier and Type | Method and Description |
|---|---|
static ModifyTerminal |
ModifyFactory.removeProperty(JcProperty jcProperty) |
static Set<ModifyTerminal> |
ModifyFactory.setPropertyInDO(JcProperty jcProperty) |
static Set<DoConcat> |
ModifyFactory.setPropertyInFOREACH(JcProperty jcProperty,
DoConcat connector) |
| Modifier and Type | Method and Description |
|---|---|
RElement<RElement<?>> |
Aggregate.avg(JcProperty property)
JCYPHER
calculate the average of numeric values
e.g. ...aggregate().
|
RElement<RElement<?>> |
Aggregate.max(JcProperty property)
JCYPHER
find the largest value in a collection of numeric values
e.g. ...aggregate().
|
RElement<RElement<?>> |
Aggregate.min(JcProperty property)
JCYPHER
find the smallest value in a collection of numeric values
e.g. ...aggregate().
|
RElement<RElement<?>> |
Percentile.over(JcProperty property)
JCYPHER
specify the properties over which to perform the percentileDisc or PercentileCont calculation
e.g. ...aggregate().percentileDisc(0.5).
|
RElement<RElement<?>> |
Aggregate.stdev(JcProperty property)
JCYPHER
calculate the standard deviation for a given value over a group;
uses a standard two-pass method, with N - 1 as the denominator, and should be used when taking a sample of the population for an unbiased estimate. |
RElement<RElement<?>> |
Aggregate.stdevp(JcProperty property)
JCYPHER
calculate the standard deviation for a given value over a group;
uses a standard two-pass method, with N - 1 as the denominator, and should be used when taking a sample of an entire population. |
RElement<RElement<?>> |
Aggregate.sum(JcProperty property)
JCYPHER
sum all the numeric values which are encountered.
|
| Modifier and Type | Method and Description |
|---|---|
UTerminal |
UsingIndex.on(JcProperty property)
JCYPHER
select the property on which to use the index
e.g.
|
| Modifier and Type | Method and Description |
|---|---|
JcProperty |
ModifyExpression.getToModify() |
| Modifier and Type | Method and Description |
|---|---|
void |
ModifyExpression.setToModify(JcProperty toModify) |
| Modifier and Type | Method and Description |
|---|---|
static ModifyTerminal |
ON_MATCH.REMOVE(JcProperty property)
JCYPHER
remove a property from a node or relation in an ON_MATCH clause
e.g. ...
|
static ModifyTerminal |
ON_CREATE.REMOVE(JcProperty property)
JCYPHER
remove a property from a node or relation in an ON_CREATE clause
e.g. ...
|
static ModifyTerminal |
DO.REMOVE(JcProperty property)
JCYPHER
remove a property from a node or relation in a DO clause
e.g. ...
|
static Set<ModifyTerminal> |
ON_MATCH.SET(JcProperty property)
JCYPHER
set a property of a node or relation in an ON_MATCH clause
e.g. ...
|
static Set<ModifyTerminal> |
ON_CREATE.SET(JcProperty property)
JCYPHER
set a property of a node or relation in an ON_CREATE clause
e.g. ...
|
static Set<ModifyTerminal> |
DO.SET(JcProperty property)
JCYPHER
set a property of a node or relation in a DO clause
e.g. ...
|
| Modifier and Type | Method and Description |
|---|---|
JcProperty |
JcElement.property(String name)
JCYPHER
access a named property
|
Copyright © 2016. All rights reserved.