Modifier and Type | Class and Description |
---|---|
private static class | |
private static class |
Modifier and Type | Field and Description |
---|---|
public static final US_ASCII | |
private static final JavaLangAccess |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public boolean | contains(Charset
The given charset cs)Implements abstract java. Tells whether or not this charset contains the given charset. |
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. |
INSTANCE | back to summary |
---|---|
public static final US_ASCII INSTANCE |
JLA | back to summary |
---|---|
private static final JavaLangAccess JLA |
US_ASCII | back to summary |
---|---|
public US_ASCII() |
contains | back to summary |
---|---|
public boolean contains(Charset cs) Implements abstract java. Doc from java. Tells whether or not this charset contains the given charset. A charset C is said to contain a charset D if, and only if, every character representable in D is also representable in C. If this relationship holds then it is guaranteed that every string that can be encoded in D can also be encoded in C without performing any replacements. That C contains D does not imply that each character representable in C by a particular byte sequence is represented in D by the same byte sequence, although sometimes this is the case. Every charset contains itself. This method computes an approximation of the containment relation:
If it returns
|
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.
|
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. |
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
|
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 | |
protected 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. |
sgp | back to summary |
---|---|
private final 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) |
encodeBufferLoop | back to summary |
---|---|
private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) |
encodeLoop | back to summary |
---|---|
protected 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.
|