Interface MutableCharTokenSequence

    • Method Detail

      • append

        void append​(char value)
        Appends the specified character to this sequence.
        Parameters:
        value - the value to append.
      • append

        void append​(char value,
                    int count)
        Appends the specified character to this sequence multiple times.
        Parameters:
        value - the value to append.
        count - the number of copies to append.
      • appendChars

        void appendChars​(CharSequence seq)
        Appends the specified character sequence to this sequence.
        Parameters:
        seq - the character sequence to append.
      • appendChars

        void appendChars​(CharSequence seq,
                         int start,
                         int length)
        Appends a subsequence of the specified character sequence to this sequence.
        Parameters:
        seq - the character sequence to append.
        start - the index of the initial character in the subsequence
        length - the length of the subsequence
      • setChar

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