Uses of Interface
anl.aida.data.CoordAxis

Packages that use CoordAxis
anl.aida.data   
anl.aida.formula   
 

Uses of CoordAxis in anl.aida.data
 

Classes in anl.aida.data with type parameters of type CoordAxis
 class Axes<T extends CoordAxis>
          Encapsulates the axes / the dimensions of some data.
 

Subinterfaces of CoordAxis in anl.aida.data
 interface StringCoordAxis
          Axis that maps indices to Strings.
 interface TimeCoordAxis
          Interface for the time coordinate axis.
 

Classes in anl.aida.data that implement CoordAxis
 class AbstractCoordAxis
          DefaultCoordinateAxis implementation.
 class AxisRange
          Defines a range along some coordinate axis.
 class DataFrameAxis
          Metadata for the axes / dimensions of a dataframe.
 class DataFrameStringAxis
           
 class DataFrameTimeAxis
          Time axis for a DataFrame.
 class DefaultStringCoordAxis
           
 class RegularTimeAxis
          TimeAxis with a regular interval
 

Fields in anl.aida.data declared as CoordAxis
protected  CoordAxis AxisRange.axis
           
private  T Axes.layerAxis
           
private  T Axes.timeAxis
           
private  T Axes.xAxis
           
private  T Axes.yAxis
           
 

Fields in anl.aida.data with type parameters of type CoordAxis
private  java.util.List<Axes<? extends CoordAxis>> CompatibilityChecker.axesList
           
 

Methods in anl.aida.data that return CoordAxis
 CoordAxis AxisRange.getAxis()
          Gets the coordinate axis for which this is a range.
 

Methods in anl.aida.data that return types with arguments of type CoordAxis
 Axes<CoordAxis> Dataset.getAxes(Variable var)
          Gets the specified variable's dimensional axes.
 Axes<CoordAxis> AbstractDataset.getAxes(Variable var)
           
 

Methods in anl.aida.data with parameters of type CoordAxis
static DataFrameAxis DataFrameAxis.createDataFrameAxis(CoordAxis axis, int index)
          Creates a DataFrameAxis for the specified axis with origin and extent equal to that of the axis.
static DataFrameAxis DataFrameAxis.createDataFrameAxis(CoordAxis axis, int origin, int extent, int index)
          Creates a DataFrameAxis for the specified axis with the specified origin and extent.
 boolean DefaultStringCoordAxis.isCompatible(CoordAxis axis)
          Gets whether or not the this axis is compatible with the specified axis.
 boolean CoordAxis.isCompatible(CoordAxis axis)
          Gets whether or not the this axis is compatible with the specified axis.
 boolean AxisRange.isCompatible(CoordAxis axis)
          Gets whether or not the this axis is compatible with the specified axis.
 boolean AbstractCoordAxis.isCompatible(CoordAxis axis)
          Gets whether or not the this axis is compatible with the specified axis.
private  boolean CompatibilityChecker.isCompatible(CoordAxis axis1, CoordAxis axis2)
           
 

Method parameters in anl.aida.data with type arguments of type CoordAxis
 void CompatibilityChecker.addAxes(Axes<? extends CoordAxis> axes)
           
 

Constructors in anl.aida.data with parameters of type CoordAxis
AxisRange(CoordAxis axis)
          Creates an AxisRange for the specified axis with origin and extent equal to that of the axis.
AxisRange(CoordAxis axis, int origin, int extent)
          Creates an AxisRange for the specified axis with the specified origin and extent.
DataFrameAxis(CoordAxis axis, int index)
          Creates a DataFrameAxis for the specified axis with origin and extent equal to that of the axis.
DataFrameAxis(CoordAxis axis, int origin, int extent, int index)
          Creates a DataFrameAxis for the specified axis with the specified origin and extent.
 

Uses of CoordAxis in anl.aida.formula
 

Methods in anl.aida.formula with parameters of type CoordAxis
private  void FormulaValidator.testLayer(CoordAxis layerAxis, FormulaVariable formulaVariable, FormulaVariable var)
           
private  void FormulaValidator.testOther(CoordAxis otherAxis, FormulaVariable formulaVariable, FormulaVariable var)
           
private  void FormulaValidator.testRange(java.util.List<AxisRange> ranges, CoordAxis axis, AxisType type, java.lang.String axisName, FormulaVariable var)
           
private  void FormulaValidator.testX(CoordAxis xAxis, FormulaVariable formulaVariable, FormulaVariable var)
           
private  void FormulaValidator.testY(CoordAxis yAxis, FormulaVariable formulaVariable, FormulaVariable var)