Package | Description |
---|---|
com.macrofocus.molap.aggregates |
Provides the necessary classes and interfaces for aggregating data.
|
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.
|
com.macrofocus.molap.dataframe.swing |
Provides the necessary classes and interfaces for interfacing with Swing data models.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AggregateDataFrame<C>
A data frame specialized for aggregating values.
|
Modifier and Type | Method and Description |
---|---|
DataFrame |
Cube.getDataFrame() |
DataFrame |
InMemoryCube.getDataFrame() |
Constructor and Description |
---|
InMemoryCube(DataFrame dataFrame) |
Modifier and Type | Class and Description |
---|---|
class |
QueryDataFrame<C> |
Modifier and Type | Method and Description |
---|---|
DataFrame<String,Group,?> |
QueryDataFrame.append(Series<String,?> series) |
DataFrame |
AbstractQuery.asDataFrame(boolean includeIndex) |
DataFrame |
Query.asDataFrame(boolean includeIndex) |
DataFrame |
QueryDataFrame.join(Series series,
String[] columns) |
DataFrame<MultiKey,String,Object> |
QueryDataFrame.reindexRows(String... columns) |
Modifier and Type | Interface and Description |
---|---|
interface |
MutableDataFrame<R,C,V>
Defines the requirements for a data frame that can change.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDataFrame<R,C,V>
This class provides a skeletal implementation of the DataFrame interface to minimize the effort required to
implement this interface.
|
class |
DefaultDataFrame<V>
A data frame with direct integer indexing on the rows and textual indexing on the columns.
|
class |
FilterDataFrame<R,C,V>
A row filterable data frame.
|
class |
IndexedDataFrame<R,V>
An indexed data frame.
|
class |
ReIndexedDataFrame<R,C,V,X,Y>
A reindexed data frame.
|
class |
SelectionDataFrame<R,C,V>
A row filterable data frame.
|
Modifier and Type | Method and Description |
---|---|
DataFrame<C,R,?> |
FilterDataFrame.append(Series<C,?> series) |
DataFrame<C,R,?> |
ReIndexedDataFrame.append(Series<C,?> series) |
DataFrame<C,R,?> |
SelectionDataFrame.append(Series<C,?> series) |
DataFrame<Column,Row,?> |
DataFrame.append(Series<Column,?> series) |
DataFrame<Object,R,?> |
IndexedDataFrame.append(Series<Object,?> series) |
DataFrame<String,Integer,?> |
DefaultDataFrame.append(Series<String,?> series) |
static <R,V> DataFrame<R,Object,V> |
DataFrameFactory.fromColumnSeries(Series<R,V>... series)
Creates a data frame using a combination of series.
|
static DataFrame<Integer,String,Object> |
DataFrameFactory.fromMySQL(String url,
String username,
String password,
String query)
Creates a data frame by retrieving the result of a query made to a MySQL database.
|
static DataFrame<Integer,String,Object> |
DataFrameFactory.fromOracle(String url,
String username,
String password,
String query)
Creates a data frame by retrieving the result of a query made to an Oracle database.
|
static DataFrame<Integer,String,Object> |
DataFrameFactory.fromPostgreSQL(String url,
String username,
String password,
String query)
Creates a data frame by retrieving the result of a query made to a PostgreSQL database.
|
static DataFrame<Integer,String,Object> |
DataFrameFactory.fromSQLServer(String url,
String username,
String password,
String query)
Creates a data frame by retrieving the result of a query made to a Microsoft SQL Server database.
|
DataFrame |
FilterDataFrame.join(Series series,
C[] cs) |
DataFrame |
ReIndexedDataFrame.join(Series series,
C[] columns) |
DataFrame |
SelectionDataFrame.join(Series series,
C[] cs) |
DataFrame |
DataFrame.join(Series series,
Column[] columns) |
DataFrame |
IndexedDataFrame.join(Series series,
Object[] columns) |
DataFrame |
DefaultDataFrame.join(Series series,
String[] columns) |
DataFrame<R,C,V> |
AbstractDataFrame.orderRows(C... columns) |
DataFrame<Row,Column,V> |
DataFrame.orderRows(Column... columns)
Returns a new data frame reordered using the values coming from the specified columns.
|
DataFrame<MultiKey,C,V> |
AbstractDataFrame.reindexRows(C... columns) |
DataFrame<MultiKey,Column,V> |
DataFrame.reindexRows(Column... columns)
Returns a new data frame reindexed using the values coming from the specified columns.
|
DataFrame<MultiKey,Object,V> |
IndexedDataFrame.reindexRows(Object... columns) |
DataFrame<MultiKey,String,V> |
DefaultDataFrame.reindexRows(String... columns) |
Modifier and Type | Method and Description |
---|---|
static <R,C> TableHelper.ColumnStatistics |
DataFrameHelper.getColumnStatistics(DataFrame<R,C,?> dataFrame,
C column)
Deprecated.
|
Constructor and Description |
---|
DataFrameStatistics(DataFrame dataFrame)
Deprecated.
|
DefaultDataFrame(DataFrame dataFrame) |
FilterDataFrame(DataFrame<R,C,V> dataFrame,
<any> filter) |
ReIndexedDataFrame(DataFrame<X,Y,V> dataFrame,
ReIndexedDataFrame.ReIndexRecipe<R,C> recipe) |
Modifier and Type | Class and Description |
---|---|
class |
TableModelDataFrame
Converts a TableModel into a DataFrame.
|
Modifier and Type | Method and Description |
---|---|
DataFrame<String,Integer,?> |
TableModelDataFrame.append(Series<String,?> series) |
static <V> DataFrame<Integer,String,V> |
SwingDataFrameFactory.fromTableModel(TableModel tableModel)
Creates a data frame using a Swing TableModel.
|
DataFrame |
TableModelDataFrame.join(Series series,
String[] columns) |
DataFrame<MultiKey,String,Object> |
TableModelDataFrame.reindexRows(String... columns) |
Constructor and Description |
---|
ColumnsComboBoxModel(DataFrame<?,C,?> dataFrame,
boolean onlyNumerical,
boolean includeNull) |
DataFrameTableModel(DataFrame dataFrame) |
Copyright © 2014 Macrofocus GmbH. All Rights Reserved.