Class CubeUtil
- java.lang.Object
-
- org.eclipse.birt.report.model.api.util.CubeUtil
-
public class CubeUtil extends java.lang.Object
Utility class to provide some methods about cube.
-
-
Constructor Summary
Constructors Constructor Description CubeUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getFullLevelName(java.lang.String dimensionName, java.lang.String levelName)
Gets the full name of the level element.static java.lang.String[]
splitLevelName(java.lang.String levelName)
Splits a full name of the level element to aString
array of length 2.
-
-
-
Method Detail
-
splitLevelName
public static java.lang.String[] splitLevelName(java.lang.String levelName)
Splits a full name of the level element to aString
array of length 2. The first member of the array is the name of the dimension element and the second is the name of the level element.- Parameters:
levelName
-- Returns:
- an string array.
-
getFullLevelName
public static java.lang.String getFullLevelName(java.lang.String dimensionName, java.lang.String levelName)
Gets the full name of the level element.- Parameters:
dimensionName
- the dimension namelevelName
- the short level name- Returns:
- the full level name
-
-