Paket | mx.olap |
Klass | public class OLAPSet |
Arv | OLAPSet Object |
Implementerar | IOLAPSet |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Relaterade API-element
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
tuples : Array [skrivskyddad]
The tuples contained by this set instance,
as an Array of IOLAPTuple instances. | OLAPSet |
Metod | Definieras med | ||
---|---|---|---|
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 | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Returns a new IOLAPSet that is hierarchized version
of this set. | OLAPSet | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input. | OLAPSet | ||
Returnerar det angivna objektets primitiva värde. | Object |
Metod | Definieras med | ||
---|---|---|---|
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 | egenskap |
OLAPSet | () | Konstruktor |
public function OLAPSet()
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Constructor
addElement | () | metod |
public function addElement(e:IOLAPElement):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
Parametrar
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 | () | metod |
public function addElements(members:IList):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
Parametrar
members:IList — The members to add, as a list of IOLAPMember instances.
A new tuple is created for each member.
|
addTuple | () | metod |
public function addTuple(tuple:mx.olap:IOLAPTuple):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Adds a new tuple to the set.
Parametrar
tuple:mx.olap:IOLAPTuple — The tuple to add.
|
compareMembers | () | metod |
protected function compareMembers(m1:IOLAPMember, m2:IOLAPMember):int
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two members in the set.
Parametrar
m1:IOLAPMember — The first member.
| |
m2:IOLAPMember — The second member.
|
int — The following:
|
crossJoin | () | metod |
public function crossJoin(input:IOLAPSet):IOLAPSet
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input
.
Parametrar
input:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input .
|
findCommonHierarchy | () | metod |
protected function findCommonHierarchy(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):IOLAPHierarchy
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.
Parametrar
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 | () | metod |
public function hierarchize(post:Boolean = false):IOLAPSet
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet that is hierarchized version of this set.
Parametrar
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 | () | metod |
protected function sortTuple(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):int
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two tuples in the set.
Parametrar
t1:mx.olap:OLAPTuple — The first tuple.
| |
t2:mx.olap:OLAPTuple — The second tuple.
|
int — The following:
|
union | () | metod |
public function union(secondSet:IOLAPSet):IOLAPSet
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input
.
Parametrar
secondSet:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a union of this
IOLAPSet instance and input .
|
Tue Jun 12 2018, 01:40 PM Z