Pakiet | mx.olap |
Klasa | public class OLAPSet |
Dziedziczenie | OLAPSet Object |
Implementuje | IOLAPSet |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Powiązane elementy interfejsu API
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
tuples : Array [tylko do odczytu]
The tuples contained by this set instance,
as an Array of IOLAPTuple instances. | OLAPSet |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
OLAPSet()
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 | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Returns a new IOLAPSet that is hierarchized version
of this set. | OLAPSet | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input. | OLAPSet | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
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 |
tuples | właściwość |
OLAPSet | () | Konstruktor |
public function OLAPSet()
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor
addElement | () | metoda |
public function addElement(e:IOLAPElement):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Parametry
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 | () | metoda |
public function addElements(members:IList):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Parametry
members:IList — The members to add, as a list of IOLAPMember instances.
A new tuple is created for each member.
|
addTuple | () | metoda |
public function addTuple(tuple:mx.olap:IOLAPTuple):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Adds a new tuple to the set.
Parametry
tuple:mx.olap:IOLAPTuple — The tuple to add.
|
compareMembers | () | metoda |
protected function compareMembers(m1:IOLAPMember, m2:IOLAPMember):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two members in the set.
Parametry
m1:IOLAPMember — The first member.
| |
m2:IOLAPMember — The second member.
|
int — The following:
|
crossJoin | () | metoda |
public function crossJoin(input:IOLAPSet):IOLAPSet
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input
.
Parametry
input:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input .
|
findCommonHierarchy | () | metoda |
protected function findCommonHierarchy(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):IOLAPHierarchy
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.
Parametry
t1:mx.olap:OLAPTuple — The first tuple.
| |
t2:mx.olap:OLAPTuple — The second tuple.
|
IOLAPHierarchy — The common IOLAPHierarchy instance for the two tuples,
or null if the tuples do not share a hierarchy.
|
hierarchize | () | metoda |
public function hierarchize(post:Boolean = false):IOLAPSet
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet that is hierarchized version of this set.
Parametry
post:Boolean (default = false ) — If true indicates that children should precede parents.
By default, parents precede children.
|
IOLAPSet — A new IOLAPSet that is hierarchized version
of this set.
|
sortTuple | () | metoda |
protected function sortTuple(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two tuples in the set.
Parametry
t1:mx.olap:OLAPTuple — The first tuple.
| |
t2:mx.olap:OLAPTuple — The second tuple.
|
int — The following:
|
union | () | metoda |
public function union(secondSet:IOLAPSet):IOLAPSet
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input
.
Parametry
secondSet:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a union of this
IOLAPSet instance and input .
|
Tue Jun 12 2018, 12:06 PM Z