패키지 | mx.olap |
클래스 | public class OLAPSet |
상속 | OLAPSet Object |
구현 | IOLAPSet |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
tuples : Array [읽기 전용]
The tuples contained by this set instance,
as an Array of IOLAPTuple instances. | OLAPSet |
메서드 | 정의 주체 | ||
---|---|---|---|
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 | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Returns a new IOLAPSet that is hierarchized version
of this set. | OLAPSet | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input. | OLAPSet | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
메서드 | 정의 주체 | ||
---|---|---|---|
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 | 속성 |
OLAPSet | () | 생성자 |
public function OLAPSet()
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor
addElement | () | 메서드 |
public function addElement(e:IOLAPElement):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
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 | () | 메서드 |
public function addElements(members:IList):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
매개 변수
members:IList — The members to add, as a list of IOLAPMember instances.
A new tuple is created for each member.
|
addTuple | () | 메서드 |
public function addTuple(tuple:mx.olap:IOLAPTuple):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Adds a new tuple to the set.
매개 변수
tuple:mx.olap:IOLAPTuple — The tuple to add.
|
compareMembers | () | 메서드 |
protected function compareMembers(m1:IOLAPMember, m2:IOLAPMember):int
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two members in the set.
매개 변수
m1:IOLAPMember — The first member.
| |
m2:IOLAPMember — The second member.
|
int — The following:
|
crossJoin | () | 메서드 |
public function crossJoin(input:IOLAPSet):IOLAPSet
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input
.
매개 변수
input:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input .
|
findCommonHierarchy | () | 메서드 |
protected function findCommonHierarchy(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):IOLAPHierarchy
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns the common IOLAPHierarchy instance for two tuples, or null if the tuples do not share a hierarchy.
매개 변수
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 | () | 메서드 |
public function hierarchize(post:Boolean = false):IOLAPSet
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet that is hierarchized version of this set.
매개 변수
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 | () | 메서드 |
protected function sortTuple(t1:mx.olap:OLAPTuple, t2:mx.olap:OLAPTuple):int
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns information about the relative location of two tuples in the set.
매개 변수
t1:mx.olap:OLAPTuple — The first tuple.
| |
t2:mx.olap:OLAPTuple — The second tuple.
|
int — The following:
|
union | () | 메서드 |
public function union(secondSet:IOLAPSet):IOLAPSet
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input
.
매개 변수
secondSet:IOLAPSet — An IOLAPSet instance.
|
IOLAPSet — An IOLAPSet instance that contains a union of this
IOLAPSet instance and input .
|
Tue Jun 12 2018, 03:17 PM Z