Paquete | mx.olap |
Interfaz | public interface IOLAPHierarchy extends IOLAPElement |
Implementadores | OLAPHierarchy |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
allMemberName : String [solo lectura]
The name of the all member of the hierarchy. | IOLAPHierarchy | ||
children : IList [solo lectura]
The children of the all member, as a list of IOLAPMember instances. | IOLAPHierarchy | ||
defaultMember : IOLAPMember [solo lectura]
The default member of the hierarchy. | IOLAPHierarchy | ||
dimension : IOLAPDimension [solo lectura]
The dimension to which this element belongs. | IOLAPElement | ||
displayName : String [solo lectura]
The name of the OLAP element, as a String, which can be used for display. | IOLAPElement | ||
hasAll : Boolean [solo lectura]
Specifies whether the hierarchy has an all member, true,
or not, false. | IOLAPHierarchy | ||
levels : IList [solo lectura]
All the levels of this hierarchy, as a list of IOLAPLevel instances. | IOLAPHierarchy | ||
members : IList [solo lectura]
All members of all the levels that belong to this hierarchy,
as a list of IOLAPMember instances. | IOLAPHierarchy | ||
name : String [solo lectura]
The name of the OLAP element that includes the OLAP schema hierarchy of the element. | IOLAPElement | ||
uniqueName : String [solo lectura]
The unique name of the OLAP element in the cube. | IOLAPElement |
Método | Definido por | ||
---|---|---|---|
Returns the level with the given name within the hierarchy. | IOLAPHierarchy | ||
Returns the member with the given name within the hierarchy. | IOLAPHierarchy |
allMemberName | propiedad |
children | propiedad |
defaultMember | propiedad |
defaultMember:IOLAPMember
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The default member of the hierarchy. The default member is used if the hierarchy is used where a member is expected.
Implementación
public function get defaultMember():IOLAPMember
hasAll | propiedad |
hasAll:Boolean
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Specifies whether the hierarchy has an all member, true
,
or not, false
. If true
, the all member name
is as specified by the allMemberName
property.
El valor predeterminado es true.
Implementación
public function get hasAll():Boolean
levels | propiedad |
levels:IList
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
All the levels of this hierarchy, as a list of IOLAPLevel instances. The returned list might represent remote data and therefore can throw an ItemPendingError.
Implementación
public function get levels():IList
members | propiedad |
members:IList
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
All members of all the levels that belong to this hierarchy, as a list of IOLAPMember instances. The returned list might represent remote data and therefore can throw an ItemPendingError.
Implementación
public function get members():IList
findLevel | () | método |
public function findLevel(name:String):IOLAPLevel
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the level with the given name within the hierarchy.
Parámetros
name:String — The name of the level.
|
IOLAPLevel — An IOLAPLevel instance representing the level,
or null if a level is not found.
|
findMember | () | método |
public function findMember(name:String):IOLAPMember
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the member with the given name within the hierarchy.
Parámetros
name:String — The name of the member.
|
IOLAPMember — An IOLAPMember instance representing the member,
or null if a member is not found.
|
Tue Jun 12 2018, 02:12 PM Z