Package com.microstrategy.web.objects
Interface WebConstantNode
- 
- All Superinterfaces:
- WebNode,- WebPromptableNode,- WebPromptSite,- WebValueNode
 
 public interface WebConstantNode extends WebValueNode The WebConstantNode interface represents a constant node within an expression. This interface contains methods specific to a constant node. For methods which apply to all nodes, see theWebNodeinterface, which this one extends.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()Returns the constant type of the current node.voidsetType(int dataType)Sets the constant type 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
 - 
Methods inherited from interface com.microstrategy.web.objects.WebValueNodegetValue, setValue
 
- 
 
- 
- 
- 
Method Detail- 
getTypeint getType() Returns the constant type of the current node.- Returns:
- The constant type of this node.  This value should come from EnumDSSXMLDataType.
- See Also:
- setType(int)
 
 - 
setTypevoid setType(int dataType) Sets the constant type of the current node.- Parameters:
- dataType- The constant type to set on the current node, from- EnumDSSXMLDataType.
- See Also:
- getType()
 
 
- 
 
-