Package com.microstrategy.web.objects
Interface WebValueNode
-
- All Superinterfaces:
WebNode
,WebPromptableNode
,WebPromptSite
- All Known Subinterfaces:
WebBigDecimalNode
,WebConstantNode
,WebTimeNode
public interface WebValueNode extends WebPromptableNode
This represents a node with a constant value in aWebExpression
- Since:
- MicroStrategy Web 8.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getValue()
Returns the value of the current node.void
setValue(java.lang.String value)
Sets the value of the current node.-
Methods inherited from interface com.microstrategy.web.objects.WebNode
appendChild, clear, clearPlaceHolder, containsPrompts, createPlaceHolder, getCanExpand, getChild, getChildCount, getDataType, getDimensionality, getDimensionalityType, getDisplayName, getExpressionType, getFirstChild, getIsIndependentCSI, getIsSpliced, getKey, getLastChild, getNextSibling, getNodeType, getParent, getPlaceHolder, getPreviousSibling, getShortXML, getTag, getUCFlag, hasChildNodes, hasPlaceHolder, insertAfter, insertBefore, isCancelledPrompt, removeChild, replaceChild, setCanExpand, setDataType, setDimensionalityType, setDisplayName, setExpressionType, setIsIndependentCSI, setIsSpliced, setTag, setUCFlag
-
Methods inherited from interface com.microstrategy.web.objects.WebPromptSite
getPromptInstances
-
-
-
-
Method Detail
-
getValue
java.lang.String getValue()
Returns the value of the current node.- Returns:
- The value of this node.
- See Also:
setValue(java.lang.String)
-
setValue
void setValue(java.lang.String value)
Sets the value of the current node. The string will not be checked for validity before being sent to the Intelligence Server.- Parameters:
value
- The constant to set on the current node.- See Also:
getValue()
-
-