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 the WebNode interface, which this one extends.
    Since:
    MicroStrategy Web 7.3.1 or earlier
    • 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, from EnumDSSXMLDataType.
        See Also:
        getType()