Package | Description |
---|---|
com.macrofocus.molap.aggregates |
Provides the necessary classes and interfaces for aggregating data.
|
com.macrofocus.molap.aggregates.aggregation |
Provides the necessary classes and interfaces for defining how the data should be aggregated.
|
com.macrofocus.molap.aggregates.cube |
Provides the necessary classes and interfaces for dealing with multidimensional cubes.
|
com.macrofocus.molap.aggregates.query |
Provides the necessary classes and interfaces for performing queries.
|
com.macrofocus.molap.dataframe |
Provides the necessary classes and interfaces for dealing with indexed table structures.
|
Modifier and Type | Method and Description |
---|---|
AggregateDataFrame<C> |
AggregateDataFrame.order(Aggregation... aggregations)
Returns a new data frame that change the order of the groups according to the
specified aggregation methods.
|
AggregateDataFrame<C> |
AggregateDataFrame.pivot(Aggregation aggregation)
Returns a new data frame that pivot the specified aggregation method into column values.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractAggregation |
class |
CountAggregation |
class |
CountDistinctAggregation |
class |
MaxAggregation |
class |
MeanAggregation |
class |
MinAggregation |
class |
StdDevAggregation |
class |
SumAggregation |
class |
VarianceAggregation |
Modifier and Type | Method and Description |
---|---|
Aggregation |
AbstractAggregation.as(String name) |
Aggregation |
Aggregation.as(String name) |
Aggregation |
AbstractAggregation.dividedBy(Aggregation aggregation) |
Aggregation |
Aggregation.dividedBy(Aggregation aggregation) |
Aggregation |
AbstractAggregation.stdDevBy(Aggregation aggregation) |
Aggregation |
Aggregation.stdDevBy(Aggregation aggregation) |
Modifier and Type | Method and Description |
---|---|
Aggregation |
AbstractAggregation.dividedBy(Aggregation aggregation) |
Aggregation |
Aggregation.dividedBy(Aggregation aggregation) |
Aggregation |
AbstractAggregation.stdDevBy(Aggregation aggregation) |
Aggregation |
Aggregation.stdDevBy(Aggregation aggregation) |
Modifier and Type | Method and Description |
---|---|
Query |
Cube.query(Aggregation... aggregations) |
Query |
InMemoryCube.query(Aggregation... aggregations) |
Modifier and Type | Method and Description |
---|---|
Aggregation[] |
CuboidQuery.getAggregations() |
Aggregation[] |
CuboidsQuery.getAggregations() |
Aggregation[] |
OrderQuery.getAggregations() |
Aggregation[] |
PivotQuery.getAggregations() |
Aggregation[] |
Query.getAggregations() |
Modifier and Type | Method and Description |
---|---|
Object |
CuboidQuery.getValue(Group path,
Aggregation aggregation) |
Object |
CuboidsQuery.getValue(Group path,
Aggregation aggregation) |
Object |
OrderQuery.getValue(Group path,
Aggregation aggregation) |
Object |
PivotQuery.getValue(Group path,
Aggregation aggregation) |
Object |
Query.getValue(Group path,
Aggregation aggregation) |
Query |
AbstractQuery.order(Aggregation... aggregations) |
Query |
Query.order(Aggregation... aggregations) |
AggregateDataFrame<C> |
QueryDataFrame.order(Aggregation... aggregations) |
Query |
AbstractQuery.pivot(Aggregation aggregation) |
Query |
Query.pivot(Aggregation aggregation) |
AggregateDataFrame<C> |
QueryDataFrame.pivot(Aggregation aggregation) |
Query |
AbstractQuery.pivot(Aggregation aggregation,
Object[] columns) |
Query |
Query.pivot(Aggregation aggregation,
Object[] values) |
Constructor and Description |
---|
CuboidQuery(Cuboid cuboid,
Aggregation... aggregations) |
CuboidQuery(Query query,
com.macrofocus.molap.aggregates.query.CuboidQuery.Operation operation,
Aggregation... aggregations) |
CuboidsQuery(Cuboid[] cuboids,
Aggregation... aggregations) |
OrderQuery(Query query,
Aggregation[] aggregations) |
PivotQuery(Query query,
Aggregation aggregation) |
PivotQuery(Query query,
Aggregation aggregation,
Object[] columns) |
Modifier and Type | Method and Description |
---|---|
AggregateDataFrame<C> |
AbstractDataFrame.aggregate(Aggregation... aggregations) |
AggregateDataFrame<Column> |
DataFrame.aggregate(Aggregation... aggregation)
Returns a new data frame suitable for data aggregation.
|
Copyright © 2014 Macrofocus GmbH. All Rights Reserved.