Package com.microstrategy.web.objects
Interface WebPercentToTotalMetric
-
public interface WebPercentToTotalMetric
The WebPercentToTotalMetric represents a percent to total metric object.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getAxesBitMap()
Returns the axes bit map, which specifies a collection of axes the user want to put in the total.SimpleList
getAxesUnits()
Returns the collection of units as part of an axis that the user wants to put in the total.WebMetric
getMetric()
Returns theWebMetric
object whose percent to total should be added.SimpleList
getUnits()
Returns the collection of units, ignoring the axes, that the user wants to put in the total.void
setAxesBitMap(int axesBitMap)
Sets the axes bitmap value.
-
-
-
Method Detail
-
getMetric
WebMetric getMetric()
Returns theWebMetric
object whose percent to total should be added.- Returns:
- the
WebMetric
object whose percent to total should be added.
-
getAxesBitMap
int getAxesBitMap()
Returns the axes bit map, which specifies a collection of axes the user want to put in the total.- Returns:
- the axes bitmap value, from
EnumDSSXMLAxesBitMap
. - See Also:
setAxesBitMap(int)
-
setAxesBitMap
void setAxesBitMap(int axesBitMap)
Sets the axes bitmap value.- Parameters:
axesBitMap
- The axes bitmap value, fromEnumDSSXMLAxesBitMap
.- See Also:
getAxesBitMap()
-
getAxesUnits
SimpleList getAxesUnits()
Returns the collection of units as part of an axis that the user wants to put in the total.- Returns:
- the
SimpleList
object, which contains the collection of units.
-
getUnits
SimpleList getUnits()
Returns the collection of units, ignoring the axes, that the user wants to put in the total.- Returns:
- the
SimpleList
object, which contains the collection of units.
-
-