Interface MutableNumericTokenSequence

    • Method Detail

      • appendLong

        void appendLong​(long value)
        Appends the specified long to this sequence.
        Parameters:
        value - the value to append.
      • appendDouble

        void appendDouble​(double value)
        Appends the specified double to this sequence.
        Parameters:
        value - the value to append. If Double.NaN, this is equivalent to appendNull().
      • append

        void append​(BigDecimal value)
        Appends the specified BigDecimal to this sequence.
        Parameters:
        value - the value to append. If null, this is equivalent to appendNull().
      • append

        void append​(BigDecimal value,
                    int count)
        Appends the specified BigDecimal to this sequence multiple times.
        Parameters:
        value - the value to append. If null, this is equivalent to appendNull(count).
        count - the number of copies to append.
      • setBigDecimal

        void setBigDecimal​(int index,
                           BigDecimal value)
        Sets the token at the specified position to the given value.
        Parameters:
        index - the position to modify
        value - the new value