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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetValue()Returns the value of the current node.voidsetValue(java.lang.String value)Sets the value of the current node.- 
Methods inherited from interface com.microstrategy.web.objects.WebNodeappendChild, 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.WebPromptSitegetPromptInstances
 
- 
 
- 
- 
- 
Method Detail- 
getValuejava.lang.String getValue() Returns the value of the current node.- Returns:
- The value of this node.
- See Also:
- setValue(java.lang.String)
 
 - 
setValuevoid 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()
 
 
- 
 
-