Package com.microstrategy.web.app.beans
Interface WebAppSimpleThreshold
-
public interface WebAppSimpleThreshold
- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getCeiling()
The value of the upper end of the threshold expression if the threshold corresponds to a non-complex (@link EnumThresholdTypes#TYPE_COMPLEX) type If the threshold type is complex, then -1 is returneddouble
getFloor()
The value of the lower end of the threshold expression if the threshold corresponds to a non-complex (@link EnumThresholdTypes#TYPE_COMPLEX) type If the threshold type is complex, then -1 is returnedjava.lang.String
getReplaceText()
Returns the text used to replace the actual value iff threshold condition is met.int
getReplaceType()
Returns the semantics value fromEnumDSSXMLBaseFormType
that is used to define the kind of replace text.WebObjectInfo
getTarget()
TheWebObjectInfo
on which the threshold is based on.WebThreshold
getThreshold()
Returns the associatedWebThreshold
objectint
getThresholdType()
Returns a value fromEnumThresholdTypes
boolean
isReplaceTypeDefined()
Indicates whether the replace text is one of the following typesEnumDSSXMLBaseFormType.DssXmlBaseFormText
EnumDSSXMLBaseFormType.DssXmlBaseFormSymbol
EnumDSSXMLBaseFormType.DssXmlBaseFormPicture
-
-
-
Method Detail
-
getThreshold
WebThreshold getThreshold()
Returns the associatedWebThreshold
object
-
getThresholdType
int getThresholdType()
Returns a value fromEnumThresholdTypes
-
isReplaceTypeDefined
boolean isReplaceTypeDefined()
Indicates whether the replace text is one of the following types
-
getFloor
double getFloor()
The value of the lower end of the threshold expression if the threshold corresponds to a non-complex (@link EnumThresholdTypes#TYPE_COMPLEX) type If the threshold type is complex, then -1 is returned
-
getCeiling
double getCeiling()
The value of the upper end of the threshold expression if the threshold corresponds to a non-complex (@link EnumThresholdTypes#TYPE_COMPLEX) type If the threshold type is complex, then -1 is returned
-
getTarget
WebObjectInfo getTarget()
TheWebObjectInfo
on which the threshold is based on.
-
getReplaceType
int getReplaceType()
Returns the semantics value fromEnumDSSXMLBaseFormType
that is used to define the kind of replace text.- Returns:
- semantics value from
EnumDSSXMLBaseFormType
.
-
getReplaceText
java.lang.String getReplaceText()
Returns the text used to replace the actual value iff threshold condition is met.
-
-