Class MessagePatternUtil.ArgNode

    • Method Detail

      • getName

        public String getName()
        Returns:
        the argument name string (the decimal-digit string if the argument has a number)
      • getNumber

        public int getNumber()
        Returns:
        the argument number, or -1 if none (for a named argument)
      • getTypeName

        public String getTypeName()
        Returns:
        the argument type string, or null if none was specified
      • getSimpleStyle

        public String getSimpleStyle()
        Returns:
        the simple-argument style string, or null if no style is specified and for other argument types
      • toString

        public String toString()
        Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
           getClass().getName() + '@' + Integer.toHexString(hashCode())

        See Writing a useful toString method if you intend implementing your own toString method.

        Overrides:
        toString in class MessagePatternUtil.MessageContentsNode
        Returns:
        a printable representation of this object.