패키지 | mx.olap |
인터페이스 | public interface IOLAPSet |
구현자 | OLAPSet |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
관련 API 요소
메서드 | 정의 주체 | ||
---|---|---|---|
Adds a new member to the set. | IOLAPSet | ||
Adds a list of members to the set. | IOLAPSet | ||
Adds a new tuple to the set. | IOLAPSet | ||
Returns a new IOLAPSet instance that contains a crossjoin of this
IOLAPSet instance and input. | IOLAPSet | ||
Returns a new IOLAPSet that is hierarchized version
of this set. | IOLAPSet | ||
Returns a new IOLAPSet instance that contains a union of this
IOLAPSet instance and input. | IOLAPSet |
addElement | () | 메서드 |
public function addElement(element: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.
매개 변수
element: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(elements: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.
매개 변수
elements: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.
|
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 .
|
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.
|
union | () | 메서드 |
public function union(input: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
.
매개 변수
input: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