Modifier and Type | Class and Description |
---|---|
private static class | |
private static class |
Modifier and Type | Field and Description |
---|---|
public static final UTF_8 | |
private static final JavaLangAccess |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public String | |
public CharsetDecoder | newDecoder()
Implements abstract java. Constructs a new decoder for this charset. |
public CharsetEncoder | newEncoder()
Implements abstract java. Constructs a new encoder for this charset. |
pack-priv static final void |
INSTANCE | back to summary |
---|---|
public static final UTF_8 INSTANCE |
JLA | back to summary |
---|---|
private static final JavaLangAccess JLA |
UTF_8 | back to summary |
---|---|
public UTF_8() |
historicalName | back to summary |
---|---|
public String historicalName() Implements sun. |
newDecoder | back to summary |
---|---|
public CharsetDecoder newDecoder() Implements abstract java. Doc from java. Constructs a new decoder for this charset.
|
newEncoder | back to summary |
---|---|
public CharsetEncoder newEncoder() Implements abstract java. Doc from java. Constructs a new encoder for this charset.
|
updatePositions | back to summary |
---|---|
pack-priv static final void updatePositions(Buffer src, int sp, Buffer dst, int dp) |
Modifier and Type | Method and Description |
---|---|
private CoderResult | |
private CoderResult | |
protected CoderResult | decodeLoop(ByteBuffer
The input byte buffer src, CharBuffer The output character buffer dst)Implements abstract java. Decodes one or more bytes into one or more characters. |
private static boolean | |
private static boolean | |
private static boolean | |
private static boolean | |
private static boolean | |
private static boolean | |
private static CoderResult | |
private static CoderResult | |
private static CoderResult | |
private static CoderResult | |
private static CoderResult | |
private static CoderResult | |
private static CoderResult |
Decoder | back to summary |
---|---|
private Decoder(Charset cs) |
decodeArrayLoop | back to summary |
---|---|
private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) |
decodeBufferLoop | back to summary |
---|---|
private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) |
decodeLoop | back to summary |
---|---|
protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) Implements abstract java. Doc from java. Decodes one or more bytes into one or more characters. This method encapsulates the basic decoding loop, decoding as many
bytes as possible until it either runs out of input, runs out of room
in the output buffer, or encounters a decoding error. This method is
invoked by the The buffers are read from, and written to, starting at their current
positions. At most This method returns a An implementation of this method may perform arbitrary lookahead by
returning
|
isMalformed3 | back to summary |
---|---|
private static boolean isMalformed3(int b1, int b2, int b3) |
isMalformed3_2 | back to summary |
---|---|
private static boolean isMalformed3_2(int b1, int b2) |
isMalformed4 | back to summary |
---|---|
private static boolean isMalformed4(int b2, int b3, int b4) |
isMalformed4_2 | back to summary |
---|---|
private static boolean isMalformed4_2(int b1, int b2) |
isMalformed4_3 | back to summary |
---|---|
private static boolean isMalformed4_3(int b3) |
isNotContinuation | back to summary |
---|---|
private static boolean isNotContinuation(int b) |
malformed | back to summary |
---|---|
private static CoderResult malformed(ByteBuffer src, int sp, CharBuffer dst, int dp, int nb) |
malformed | back to summary |
---|---|
private static CoderResult malformed(ByteBuffer src, int mark, int nb) |
malformedForLength | back to summary |
---|---|
private static CoderResult malformedForLength(ByteBuffer src, int sp, CharBuffer dst, int dp, int malformedNB) |
malformedForLength | back to summary |
---|---|
private static CoderResult malformedForLength(ByteBuffer src, int mark, int malformedNB) |
malformedN | back to summary |
---|---|
private static CoderResult malformedN(ByteBuffer src, int nb) |
xflow | back to summary |
---|---|
private static CoderResult xflow(Buffer src, int sp, int sl, Buffer dst, int dp, int nb) |
xflow | back to summary |
---|---|
private static CoderResult xflow(Buffer src, int mark, int nb) |
Modifier and Type | Method and Description |
---|---|
public boolean | canEncode(char
The given character c)Overrides java. Tells whether or not this encoder can encode the given character. |
private CoderResult | |
private CoderResult | encodeArrayLoopSlow(CharBuffer src, char[] sa, int sp, int sl, ByteBuffer dst, byte[] da, int dp, int dl)
|
private CoderResult | |
protected final CoderResult | encodeLoop(CharBuffer
The input character buffer src, ByteBuffer The output byte buffer dst)Implements abstract java. Encodes one or more characters into one or more bytes. |
public boolean | isLegalReplacement(byte[]
The byte array to be tested repl)Overrides java. Tells whether or not the given byte array is a legal replacement value for this encoder. |
private static CoderResult | |
private static CoderResult |
sgp | back to summary |
---|---|
private Surrogate. |
Encoder | back to summary |
---|---|
private Encoder(Charset cs) |
canEncode | back to summary |
---|---|
public boolean canEncode(char c) Overrides java. Doc from java. Tells whether or not this encoder can encode the given character. This method returns This method may modify this encoder's state; it should therefore not be invoked if an encoding operation is already in progress. The default implementation of this method is not very efficient; it should generally be overridden to improve performance.
|
encodeArrayLoop | back to summary |
---|---|
private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) |
encodeArrayLoopSlow | back to summary |
---|---|
private CoderResult encodeArrayLoopSlow(CharBuffer src, char[] sa, int sp, int sl, ByteBuffer dst, byte[] da, int dp, int dl) |
encodeBufferLoop | back to summary |
---|---|
private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) |
encodeLoop | back to summary |
---|---|
protected final CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) Implements abstract java. Doc from java. Encodes one or more characters into one or more bytes. This method encapsulates the basic encoding loop, encoding as many
characters as possible until it either runs out of input, runs out of room
in the output buffer, or encounters an encoding error. This method is
invoked by the The buffers are read from, and written to, starting at their current
positions. At most This method returns a An implementation of this method may perform arbitrary lookahead by
returning
|
isLegalReplacement | back to summary |
---|---|
public boolean isLegalReplacement(byte[] repl) Overrides java. Doc from java. Tells whether or not the given byte array is a legal replacement value for this encoder. A replacement is legal if, and only if, it is a legal sequence of bytes in this encoder's charset; that is, it must be possible to decode the replacement into one or more sixteen-bit Unicode characters. The default implementation of this method is not very efficient; it should generally be overridden to improve performance.
|
overflow | back to summary |
---|---|
private static CoderResult overflow(CharBuffer src, int sp, ByteBuffer dst, int dp) |
overflow | back to summary |
---|---|
private static CoderResult overflow(CharBuffer src, int mark) |