((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Interfacepublic interface IOLAPHierarchy extends IOLAPElement
ImplementorsOLAPHierarchy

The IOLAPHierarchy interface represents a user-defined hierarchy in a dimension of an OLAP schema.

Veja também

mx.olap.OLAPHierarchy


Propriedades Públicas
 PropriedadeDefinido por
  allMemberName : String
[read-only] The name of the all member of the hierarchy.
IOLAPHierarchy
  children : IList
[read-only] The children of the all member, as a list of IOLAPMember instances.
IOLAPHierarchy
  defaultMember : IOLAPMember
[read-only] The default member of the hierarchy.
IOLAPHierarchy
 Inheriteddimension : IOLAPDimension
[read-only] The dimension to which this element belongs.
IOLAPElement
 InheriteddisplayName : String
[read-only] The name of the OLAP element, as a String, which can be used for display.
IOLAPElement
  hasAll : Boolean
[read-only] Specifies whether the hierarchy has an all member, true, or not, false.
IOLAPHierarchy
  levels : IList
[read-only] All the levels of this hierarchy, as a list of IOLAPLevel instances.
IOLAPHierarchy
  members : IList
[read-only] All members of all the levels that belong to this hierarchy, as a list of IOLAPMember instances.
IOLAPHierarchy
 Inheritedname : String
[read-only] The name of the OLAP element that includes the OLAP schema hierarchy of the element.
IOLAPElement
 InheriteduniqueName : String
[read-only] The unique name of the OLAP element in the cube.
IOLAPElement
Métodos Públicos
 MétodoDefinido por
  
Returns the level with the given name within the hierarchy.
IOLAPHierarchy
  
Returns the member with the given name within the hierarchy.
IOLAPHierarchy
Detalhes da propriedade
allMemberNamepropriedade
allMemberName:String  [read-only]

The name of the all member of the hierarchy.

The default value is "(All)".


Implementação
    public function get allMemberName():String
childrenpropriedade 
children:IList  [read-only]

The children of the all member, as a list of IOLAPMember instances.


Implementação
    public function get children():IList
defaultMemberpropriedade 
defaultMember:IOLAPMember  [read-only]

The default member of the hierarchy. The default member is used if the hierarchy is used where a member is expected.


Implementação
    public function get defaultMember():IOLAPMember
hasAllpropriedade 
hasAll:Boolean  [read-only]

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.

The default value is true.


Implementação
    public function get hasAll():Boolean
levelspropriedade 
levels:IList  [read-only]

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.


Implementação
    public function get levels():IList
memberspropriedade 
members:IList  [read-only]

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.


Implementação
    public function get members():IList
Detalhes do método
findLevel()método
public function findLevel(name:String):IOLAPLevel

Returns the level with the given name within the hierarchy.

Parâmetros

name:String — The name of the level.

Retorna
IOLAPLevel — An IOLAPLevel instance representing the level, or null if a level is not found.
findMember()método 
public function findMember(name:String):IOLAPMember

Returns the member with the given name within the hierarchy.

Parâmetros

name:String — The name of the member.

Retorna
IOLAPMember — An IOLAPMember instance representing the member, or null if a member is not found.