Package com.microstrategy.web.objects
Interface WebTransformationMetric
-
public interface WebTransformationMetric
The WebTransformationMetric interface represents a transformation metric object.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFormulaType()
Returns the formula type used in the transformation.WebMetric
getMetric()
Returns theWebMetric
object that the transformation metric is based on.WebObjectInfo
getTransformationRole()
Returns aWebObjectInfo
object, which has information about the transformation role.void
setFormulaType(int formulaType)
Sets the formula type used in the transformation.
-
-
-
Method Detail
-
getMetric
WebMetric getMetric()
Returns theWebMetric
object that the transformation metric is based on.- Returns:
- the
WebMetric
object.
-
getTransformationRole
WebObjectInfo getTransformationRole()
Returns aWebObjectInfo
object, which has information about the transformation role.- Returns:
- a
WebObjectInfo
object, which has information about the transformation role.
-
setFormulaType
void setFormulaType(int formulaType)
Sets the formula type used in the transformation.- Parameters:
formulaType
- The formula type to be used in the transformation, fromEnumDSSXMLMetricFormulaType
.- See Also:
getFormulaType()
-
getFormulaType
int getFormulaType()
Returns the formula type used in the transformation.- Returns:
- the formula type used in the transformation, from
EnumDSSXMLMetricFormulaType
. - See Also:
setFormulaType(int)
-
-