Referência do ActionScript® 3.0 para Adobe® Flash® Platform
Início  |  Ocultar listas de Pacotes e Classes |  Pacotes  |  Classes  |  Novidades  |  Índice  |  Apêndices  |  Por que inglês?
Filtros: Recuperando dados do servidor...
Recuperando dados do servidor...
mx.olap 

OLAPSet  - AS3 Flex

Pacotemx.olap
Classepublic class OLAPSet
HerançaOLAPSet Inheritance Object
Implementações IOLAPSet

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

The OLAPSet class represents a set, which is used to configure the axis of an OLAP query. A set consists of zero or more tuples; a set that does not contain any tuples is known as an empty set.

Elementos da API relacionados



Propriedades públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto.
Object
  tuples : Array
[somente leitura] The tuples contained by this set instance, as an Array of IOLAPTuple instances.
OLAPSet
Métodos públicos
 MétodoDefinido por
  
Constructor
OLAPSet
  
Adds a new member to the set.
OLAPSet
  
Adds a list of members to the set.
OLAPSet
  
Adds a new tuple to the set.
OLAPSet
  
Returns a new IOLAPSet instance that contains a crossjoin of this IOLAPSet instance and input.
OLAPSet
 Inherited
Indica se um objeto tem uma propriedade especificada definida.
Object
  
Returns a new IOLAPSet that is hierarchized version of this set.
OLAPSet
 Inherited
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro.
Object
 Inherited
Indica se a propriedade especificada existe e é enumerável.
Object
 Inherited
Define a disponibilidade de uma propriedade dinâmica para operações de repetição.
Object
 Inherited
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade.
Object
 Inherited
Retorna a representação de string do objeto especificado.
Object
  
Returns a new IOLAPSet instance that contains a union of this IOLAPSet instance and input.
OLAPSet
 Inherited
Retorna o valor primitivo do objeto especificado.
Object
Métodos protegidos
 MétodoDefinido por
  
Returns information about the relative location of two members in the set.
OLAPSet
  
Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.
OLAPSet
  
Returns information about the relative location of two tuples in the set.
OLAPSet
Detalhes da propriedade

tuples

propriedade
tuples:Array  [somente leitura]

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

The tuples contained by this set instance, as an Array of IOLAPTuple instances.



Implementação
    public function get tuples():Array
Detalhes do construtor

OLAPSet

()Construtor
public function OLAPSet()

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Constructor

Detalhes do método

addElement

()método
public function addElement(e:IOLAPElement):void

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

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

e: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(members:IList):void

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

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

members: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:mx.olap:IOLAPTuple):void

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Adds a new tuple to the set.

Parâmetros

tuple:mx.olap:IOLAPTuple — The tuple to add.

compareMembers

()método 
protected function compareMembers(m1:IOLAPMember, m2:IOLAPMember):int

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Returns information about the relative location of two members in the set.

Parâmetros

m1:IOLAPMember — The first member.
 
m2:IOLAPMember — The second member.

Retorna
int — The following:
  • 0 if the members are at the same level
  • 1 if m2 is higher in the hierarchy than m1
  • -1 if m1 is higher in the hierarchy than m2

crossJoin

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

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

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.

findCommonHierarchy

()método 
protected function findCommonHierarchy(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):IOLAPHierarchy

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.

Parâmetros

t1:mx.olap:OLAPTuple — The first tuple.
 
t2:mx.olap:OLAPTuple — The second tuple.

Retorna
IOLAPHierarchy — The common IOLAPHierarchy instance for the two tuples, or null if the tuples do not share a hierarchy.

hierarchize

()método 
public function hierarchize(post:Boolean = false):IOLAPSet

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

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.

sortTuple

()método 
protected function sortTuple(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):int

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

Returns information about the relative location of two tuples in the set.

Parâmetros

t1:mx.olap:OLAPTuple — The first tuple.
 
t2:mx.olap:OLAPTuple — The second tuple.

Retorna
int — The following:
  • 0 if the tuples are at the same level
  • 1 if t2 is higher than t1
  • -1 if t1 is higher than t2

union

()método 
public function union(secondSet:IOLAPSet):IOLAPSet

Versão da linguagem: ActionScript 3.0
Versão de produto: Flex 3
Versões de runtime: Flash Player 9, AIR 1.1

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

Parâmetros

secondSet:IOLAPSet — An IOLAPSet instance.

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




[ X ]Por que inglês?
O conteúdo na Referência do ActionScript 3.0 aparece em inglês

Nem todas as partes da Referência do ActionScript 3.0 estão traduzidas em todos os idiomas. Quando um elemento de um idioma não está traduzido, ele é exibido em inglês. Por exemplo, a classe ga.controls.HelpBox não está traduzida em nenhum idioma. Por isso, na versão da referência em português do Brasil, a classe ga.controls.HelpBox é exibida em inglês.