((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Interfacepublic interface IOLAPSet
ImplementorsOLAPSet

The IOLAPSet interface represents a set, which is used to configure the axis of an OLAP query.

Veja também

mx.olap.OLAPSet
mx.olap.OLAPQueryAxis
mx.olap.IOLAPResultAxis
mx.olap.OLAPResultAxis


Métodos Públicos
 MétodoDefinido por
  
Adds a new member to the set.
IOLAPSet
  
addElements(elements:IList):void
Adds a list of members to the set.
IOLAPSet
  
Adds a new tuple to the set.
IOLAPSet
  
Returns a new IOLAPSet instance that contains a crossjoin of this IOLAPSet instance and input.
IOLAPSet
  
hierarchize(post:Boolean = false):IOLAPSet
Returns a new IOLAPSet that is hierarchized version of this set.
IOLAPSet
  
Returns a new IOLAPSet instance that contains a union of this IOLAPSet instance and input.
IOLAPSet
Detalhes do método
addElement()método
public function addElement(element:IOLAPElement):void

Adds a new member to the set.

This method adds the appropriate elements to the set, depending on the type of element passed in. If an IOLAPHierarchy element is passed, it adds the default member of the hierarchy. If an IOLAPLevel element is passed, it adds all the members of the level. If an IOLAPMember element is passed, it is added to the set.

Parâmetros

element:IOLAPElement — The member to add. If element is a hierarchy or level, its members are added. If element is an instance of IOLAPMember, it is added directly. A new tuple is created for each member.

addElements()método 
public function addElements(elements:IList):void

Adds a list of members to the set. This method can be called when members or children of a hierarchy or member need to be added to the set.

Parâmetros

elements:IList — The members to add, as a list of IOLAPMember instances. A new tuple is created for each member.

addTuple()método 
public function addTuple(tuple:IOLAPTuple):void

Adds a new tuple to the set.

Parâmetros

tuple:IOLAPTuple — The tuple to add.

crossJoin()método 
public function crossJoin(input:IOLAPSet):IOLAPSet

Returns a new IOLAPSet instance that contains a crossjoin of this IOLAPSet instance and input.

Parâmetros

input:IOLAPSet — An IOLAPSet instance.

Retorna
IOLAPSet — An IOLAPSet instance that contains a crossjoin of this IOLAPSet instance and input.
hierarchize()método 
public function hierarchize(post:Boolean = false):IOLAPSet

Returns a new IOLAPSet that is hierarchized version of this set.

Parâmetros

post:Boolean (default = false) — If true indicates that children should precede parents. By default, parents precede children.

Retorna
IOLAPSet — A new IOLAPSet that is hierarchized version of this set.
union()método 
public function union(input:IOLAPSet):IOLAPSet

Returns a new IOLAPSet instance that contains a union of this IOLAPSet instance and input.

Parâmetros

input:IOLAPSet — An IOLAPSet instance.

Retorna
IOLAPSet — An IOLAPSet instance that contains a union of this IOLAPSet instance and input.