public interface _Private_FastAppendable
extends java.lang.Appendable
| Modifier and Type | Method and Description |
|---|---|
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 appendAscii(char c)
throws java.io.IOException
c - java.io.IOExceptionvoid appendAscii(java.lang.CharSequence csq)
throws java.io.IOException
csq - java.io.IOExceptionvoid appendAscii(java.lang.CharSequence csq,
int start,
int end)
throws java.io.IOException
csq - start - end - java.io.IOExceptionvoid appendUtf16(char c)
throws java.io.IOException
c - java.io.IOExceptionvoid appendUtf16Surrogate(char leadSurrogate,
char trailSurrogate)
throws java.io.IOException
leadSurrogate - trailSurrogate - java.io.IOException