| Paket | mx.olap |
| Sınıf | public class OLAPSet |
| Miras Alma | OLAPSet Object |
| Uygular | IOLAPSet |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
İlgili API Öğeleri
| Özellik | Tanımlayan: | ||
|---|---|---|---|
![]() | constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | |
| tuples : Array [salt okunur]
The tuples contained by this set instance,
as an Array of IOLAPTuple instances. | OLAPSet | ||
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
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 | ||
![]() |
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | |
Returns a new IOLAPSet that is hierarchized version
of this set. | OLAPSet | ||
![]() |
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | |
![]() |
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | |
![]() |
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | |
![]() |
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | |
![]() |
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | |
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input. | OLAPSet | ||
![]() |
Belirtilen nesnenin temel değerini döndürür. | Object | |
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
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 | özellik |
OLAPSet | () | Yapıcı |
public function OLAPSet()| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor
addElement | () | yöntem |
public function addElement(e:IOLAPElement):void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | 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.
Parametreler
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 | () | yöntem |
public function addElements(members:IList):void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | 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.
Parametreler
members:IList — The members to add, as a list of IOLAPMember instances.
A new tuple is created for each member.
|
addTuple | () | yöntem |
public function addTuple(tuple:mx.olap:IOLAPTuple):void| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Adds a new tuple to the set.
Parametreler
tuple:mx.olap:IOLAPTuple — The tuple to add.
|
compareMembers | () | yöntem |
protected function compareMembers(m1:IOLAPMember, m2:IOLAPMember):int| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two members in the set.
Parametreler
m1:IOLAPMember — The first member.
| |
m2:IOLAPMember — The second member.
|
int — The following:
|
crossJoin | () | yöntem |
public function crossJoin(input:IOLAPSet):IOLAPSet| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input.
Parametreler
input:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input.
|
findCommonHierarchy | () | yöntem |
protected function findCommonHierarchy(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):IOLAPHierarchy| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.
Parametreler
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 | () | yöntem |
public function hierarchize(post:Boolean = false):IOLAPSet| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet that is hierarchized version of this set.
Parametreler
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 | () | yöntem |
protected function sortTuple(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):int| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two tuples in the set.
Parametreler
t1:mx.olap:OLAPTuple — The first tuple.
| |
t2:mx.olap:OLAPTuple — The second tuple.
|
int — The following:
|
union | () | yöntem |
public function union(secondSet:IOLAPSet):IOLAPSet| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Flex 3 |
| Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input.
Parametreler
secondSet:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a union of this
IOLAPSet instance and input.
|
Tue Jun 12 2018, 01:09 PM Z
Miras Alınan Genel Özellikleri Gizle
Miras Alınan Genel Özellikleri Göster