Package | Description |
---|---|
com.marklogic.client.expression |
The package provides classes for building Optic plan pipelines and expressions
for execution on the REST server.
|
com.marklogic.client.type |
The package provides interfaces specifying the type of an expression or
value as passed to a
PlanBuilder method
or returned from a RowRecord method. |
Modifier and Type | Method and Description |
---|---|
abstract PlanAggregateCol |
PlanBuilder.arrayAggregate(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function constructs an array whose items are the result of evaluating the column for each row in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.arrayAggregate(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function constructs an array whose items are the result of evaluating the column for each row in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.avg(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function averages the non-null values of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.avg(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function averages the non-null values of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.count(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function counts the rows where the specified input column has a value.
|
abstract PlanAggregateCol |
PlanBuilder.count(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function counts the rows where the specified input column has a value.
|
PlanGroupConcatOptionSeq |
PlanBuilderBase.groupConcatOptions(PlanValueOption option)
Specifies options for aggregating the values of a column for the rows
belonging to each group by concatenating the values into a single string value.
|
PlanGroupConcatOptionSeq |
PlanBuilderBase.groupConcatOptions(java.lang.String separator,
PlanValueOption option)
Specifies options for aggregating the values of a column for the rows
belonging to each group by concatenating the values into a single string value.
|
abstract PlanAggregateCol |
PlanBuilder.max(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function gets the largest non-null value of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.max(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function gets the largest non-null value of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.min(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function gets the smallest non-null value of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.min(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function gets the smallest non-null value of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.sequenceAggregate(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This call constructs a sequence whose items are the values of a column for each row in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.sequenceAggregate(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This call constructs a sequence whose items are the values of a column for each row in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.sum(PlanColumn name,
PlanExprCol column,
PlanValueOption option)
This function adds the non-null values of the column for the rows in the group or row set.
|
abstract PlanAggregateCol |
PlanBuilder.sum(java.lang.String name,
java.lang.String column,
PlanValueOption option)
This function adds the non-null values of the column for the rows in the group or row set.
|
Modifier and Type | Method and Description |
---|---|
static PlanValueOption |
PlanValueOption.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlanValueOption[] |
PlanValueOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2013-2020 MarkLogic Corporation.