| Package | mx.olap |
| Interface | public interface IOLAPSchema |
| Implementors | OLAPSchema |
See also
| Property | Defined By | ||
|---|---|---|---|
| cubes : IList [read-only]
All the cubes known by this schema, as a list of IOLAPCube instances. | IOLAPSchema | ||
| Method | Defined By | ||
|---|---|---|---|
Creates an OLAP cube from the schema. | IOLAPSchema | ||
Returns a cube specified by name. | IOLAPSchema | ||
| cubes | property |
cubes:IList [read-only] All the cubes known by this schema, as a list of IOLAPCube instances. The returned list might represent remote data and therefore can throw an ItemPendingError.
public function get cubes():IList| createCube | () | method |
public function createCube(name:String):IOLAPCubeCreates an OLAP cube from the schema.
Parameters
name:String — The name of the cube.
|
IOLAPCube — The IOLAPCube instance.
|
| getCube | () | method |
public function getCube(name:String):IOLAPCubeReturns a cube specified by name.
Parameters
name:String — The name of the cube.
|
IOLAPCube — The IOLAPCube instance, or null if one is not found.
|