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 theWebNode
interface, which this one extends.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getType()
Returns the constant type of the current node.void
setType(int dataType)
Sets the constant type 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
-
Methods inherited from interface com.microstrategy.web.objects.WebValueNode
getValue, setValue
-
-
-
-
Method Detail
-
getType
int 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)
-
setType
void setType(int dataType)
Sets the constant type of the current node.- Parameters:
dataType
- The constant type to set on the current node, fromEnumDSSXMLDataType
.- See Also:
getType()
-
-