Package com.microstrategy.web.transform
Interface StyleMapCondition
-
- All Superinterfaces:
java.lang.Cloneable
,ConfigurationElement
,StyleMapClause
- All Known Implementing Classes:
StyleMapConditionImpl
public interface StyleMapCondition extends StyleMapClause
This interface is aStyleMapClause
that include a reference to aMapperDefn
and a mapper-specific data string.- Since:
- MicroStrategy Web 9.0.0
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.transform.StyleMapClause
CLAUSE_CONDITION, CLAUSE_DEFAULT, CLAUSE_UNKNOWN
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAdditionalData()
Returns the additional data associated with this specific mapping condition.MapperDefn
getMapperDefn()
Returns theMapperDefn
object associated with this mapper condition.void
setAdditionalData(java.lang.String addlData)
Sets the additional data associated with this specific mapping condition.void
setMapperDefn(MapperDefn mapperDefn)
Sets theMapperDefn
object associated with this mapper condition.-
Methods inherited from interface com.microstrategy.utils.config.ConfigurationElement
getAttribute, getAttributes, getElement, getElements, getKey, getNodeName, getStrAttribute, initFromXML, reload, toXML
-
Methods inherited from interface com.microstrategy.web.transform.StyleMapClause
getToStyle, getType, mapStyle, setToStyle
-
-
-
-
Method Detail
-
getMapperDefn
MapperDefn getMapperDefn()
Returns theMapperDefn
object associated with this mapper condition.- Returns:
- The
MapperDefn
object associated with this mapper condition.
-
setMapperDefn
void setMapperDefn(MapperDefn mapperDefn)
Sets theMapperDefn
object associated with this mapper condition.- Parameters:
mapperDefn
- TheMapperDefn
object associated with this mapper condition.
-
getAdditionalData
java.lang.String getAdditionalData()
Returns the additional data associated with this specific mapping condition.- Returns:
- The additional data associated with this specific mapping condition.
-
setAdditionalData
void setAdditionalData(java.lang.String addlData)
Sets the additional data associated with this specific mapping condition.- Parameters:
addlData
- The additional data associated with this specific mapping condition.
-
-