Uses of Class
mondrian.util.Pair
-
Packages that use Pair Package Description mondrian.olap Mondrian's core package, this defines connections and the catalog metamodel, and allows you to execute queries.mondrian.rolap Implements the data access layer for the olap package.mondrian.rolap.agg Manages a cache of aggregates containing cell values.mondrian.rolap.sql Database-independent library for generating SQL.mondrian.util Mondrian utilities. -
-
Uses of Pair in mondrian.olap
Methods in mondrian.olap that return Pair Modifier and Type Method Description static Pair<Long,TimeUnit>
Util. parseInterval(String s, TimeUnit unit)
Parses an interval.Methods in mondrian.olap that return types with arguments of type Pair Modifier and Type Method Description Iterator<Pair<String,String>>
Util.PropertyList. iterator()
-
Uses of Pair in mondrian.rolap
Subclasses of Pair in mondrian.rolap Modifier and Type Class Description class
SchemaKey
Key for an instance of a schema. -
Uses of Pair in mondrian.rolap.agg
Methods in mondrian.rolap.agg that return Pair Modifier and Type Method Description static Pair<String,List<SqlStatement.Type>>
AggregationManager. generateSql(mondrian.rolap.agg.GroupingSetsList groupingSetsList, List<StarPredicate> compoundPredicateList)
Generates the query to retrieve the cells for a list of segments.Pair<String,List<SqlStatement.Type>>
AbstractQuerySpec. generateSqlQuery()
Pair<String,List<SqlStatement.Type>>
QuerySpec. generateSqlQuery()
Pair<SortedSet<Comparable>,Boolean>
SegmentAxis. getValuesAndIndicator()
static Pair<SegmentHeader,SegmentBody>
SegmentBuilder. rollup(Map<SegmentHeader,SegmentBody> map, Set<String> keepColumns, BitKey targetBitkey, Aggregator rollupAggregator, Dialect.Datatype datatype)
Given a collection of segments, all of the same dimensionality, rolls up to create a segment with reduced dimensionality.Method parameters in mondrian.rolap.agg with type arguments of type Pair Modifier and Type Method Description SegmentBody
SegmentDataset. createSegmentBody(List<Pair<SortedSet<Comparable>,Boolean>> axes)
Return an immutable, final and serializable implementation of a SegmentBody in order to cache this dataset. -
Uses of Pair in mondrian.rolap.sql
Methods in mondrian.rolap.sql that return Pair Modifier and Type Method Description Pair<String,List<SqlStatement.Type>>
SqlQuery. toSqlAndTypes()
-
Uses of Pair in mondrian.util
Methods in mondrian.util that return Pair Modifier and Type Method Description static <L,R>
Pair<L,R>Pair. of(L left, R right)
Creates a Pair.Methods in mondrian.util with parameters of type Pair Modifier and Type Method Description int
Pair. compareTo(Pair<L,R> that)
Method parameters in mondrian.util with type arguments of type Pair Modifier and Type Method Description static <L,R>
List<L>Pair. left(List<Pair<L,R>> list)
Returns a list of the left elements of a list of pairs.static <L,R>
Iterable<L>Pair. leftIter(Iterable<Pair<L,R>> iterable)
Returns an iterable over the left slice of an iterable.static <L,R>
List<R>Pair. right(List<Pair<L,R>> list)
Returns a list of the right elements of a list of pairs.static <L,R>
Iterable<R>Pair. rightIter(Iterable<Pair<L,R>> iterable)
Returns an iterable over the right slice of an iterable.
-