Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap
Interface OlapEdge

All Known Implementing Classes:
DefaultOlapEdge

public interface OlapEdge

OlapEdge is the object that is used by the default OlapTableModel implementation, DefaultOlapTableModel. It represents a container for an OlapMember (required) and an OlapMeasure (optional).


Method Summary
 OlapMeasure getMeasure()
          Retrieves the assigned measure.
 OlapMember getMember()
          Retrieves the assigned member.
 String getName()
          Retrieves the string name to display.
 int getType()
          Retrieves the member's type.
 

Method Detail

getMeasure

OlapMeasure getMeasure()
Retrieves the assigned measure.

Returns:
the olap measure

getMember

OlapMember getMember()
Retrieves the assigned member.

Returns:
the olap member

getType

int getType()
Retrieves the member's type.

Returns:
the pivoted member's type

getName

String getName()
Retrieves the string name to display.

Returns:
the pivoted member's name

Copyright © 2011 Citra Technologies. All Rights Reserved.