Package com.invirgance.convirgance.olap
Class Metric
java.lang.Object
com.invirgance.convirgance.olap.Metric
Provides support for quantitative values of data.
- Author:
- jbanes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the column representing this metric's data.getStar()Returns the star schema associated with this metric.getTable()Returns the database table associated with this metric.voidSets the column associated with this metric.voidAssigns a new table to this metric.
- 
Constructor Details- 
Metricpublic Metric()Default constructor initializes an empty Metric with no assigned attributes.
- 
MetricConstructs a Metric with an associated database table and column.- Parameters:
- table- Database table associated with the metric.
- column- Column associated with the metric.
 
 
- 
- 
Method Details- 
getStarReturns the star schema associated with this metric.- Returns:
- the Star schema assigned to the metric.
 
- 
getTableReturns the database table associated with this metric.- Returns:
- Table object associated with this metric.
 
- 
setTableAssigns a new table to this metric.- Parameters:
- table- the Table object containing the metric data.
 
- 
getColumnReturns the column representing this metric's data.- Returns:
- the Column object with the metric data.
 
- 
setColumnSets the column associated with this metric.- Parameters:
- column- The Column object associated with this metric.
 
 
-