Class _Private_FastAppendableDecorator

  • All Implemented Interfaces:
    _Private_FastAppendable, java.io.Closeable, java.io.Flushable, java.lang.Appendable, java.lang.AutoCloseable

    public abstract class _Private_FastAppendableDecorator
    extends java.lang.Object
    implements _Private_FastAppendable, java.io.Closeable, java.io.Flushable
    NOT FOR APPLICATION USE!
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Appendable append​(char c)  
      java.lang.Appendable append​(java.lang.CharSequence csq)  
      java.lang.Appendable append​(java.lang.CharSequence csq, int start, int end)  
      void appendAscii​(char c)
      High performance method for appending an ASCII character.
      void appendAscii​(java.lang.CharSequence csq)
      High performance method for appending a sequence of ASCII characters.
      void appendAscii​(java.lang.CharSequence csq, int start, int end)
      High performance method for appending a range in sequence of ASCII characters.
      void appendUtf16​(char c)
      High performance method for appending a UTF-16 non-surrogate character.
      void appendUtf16Surrogate​(char leadSurrogate, char trailSurrogate)
      High performance method for appending a UTF-16 surrogate pair.
      void close()  
      void flush()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • flush

        public void flush()
                   throws java.io.IOException
        Specified by:
        flush in interface java.io.Flushable
        Throws:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Throws:
        java.io.IOException
      • append

        public java.lang.Appendable append​(char c)
                                    throws java.io.IOException
        Specified by:
        append in interface java.lang.Appendable
        Throws:
        java.io.IOException
      • append

        public java.lang.Appendable append​(java.lang.CharSequence csq)
                                    throws java.io.IOException
        Specified by:
        append in interface java.lang.Appendable
        Throws:
        java.io.IOException
      • append

        public java.lang.Appendable append​(java.lang.CharSequence csq,
                                           int start,
                                           int end)
                                    throws java.io.IOException
        Specified by:
        append in interface java.lang.Appendable
        Throws:
        java.io.IOException
      • appendAscii

        public void appendAscii​(char c)
                         throws java.io.IOException
        Description copied from interface: _Private_FastAppendable
        High performance method for appending an ASCII character. METHOD DOESN'T VERIFY IF CHARACTER IS ASCII.
        Specified by:
        appendAscii in interface _Private_FastAppendable
        Throws:
        java.io.IOException
      • appendAscii

        public void appendAscii​(java.lang.CharSequence csq)
                         throws java.io.IOException
        Description copied from interface: _Private_FastAppendable
        High performance method for appending a sequence of ASCII characters. METHOD DOESN'T VERIFY IF CHARACTERS ARE ASCII.
        Specified by:
        appendAscii in interface _Private_FastAppendable
        Throws:
        java.io.IOException
      • appendAscii

        public void appendAscii​(java.lang.CharSequence csq,
                                int start,
                                int end)
                         throws java.io.IOException
        Description copied from interface: _Private_FastAppendable
        High performance method for appending a range in sequence of ASCII characters. METHOD DOESN'T VERIFY IF CHARACTERS ARE ASCII.
        Specified by:
        appendAscii in interface _Private_FastAppendable
        Throws:
        java.io.IOException
      • appendUtf16

        public void appendUtf16​(char c)
                         throws java.io.IOException
        Description copied from interface: _Private_FastAppendable
        High performance method for appending a UTF-16 non-surrogate character. METHOD DOESN'T VERIFY IF CHARACTER IS OR IS NOT SURROGATE.
        Specified by:
        appendUtf16 in interface _Private_FastAppendable
        Throws:
        java.io.IOException
      • appendUtf16Surrogate

        public void appendUtf16Surrogate​(char leadSurrogate,
                                         char trailSurrogate)
                                  throws java.io.IOException
        Description copied from interface: _Private_FastAppendable
        High performance method for appending a UTF-16 surrogate pair. METHOD DOESN'T VERIFY IF LEAD AND TRAIL SURROGATES ARE VALID.
        Specified by:
        appendUtf16Surrogate in interface _Private_FastAppendable
        Throws:
        java.io.IOException