|
JavaTM 2 Platform Std. Ed. v1.4.2 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CoderResult | |
java.nio.charset | Defines charsets, decoders, and encoders, for translating between bytes and Unicode characters. |
Uses of CoderResult in java.nio.charset |
Fields in java.nio.charset declared as CoderResult | |
static CoderResult |
CoderResult.UNDERFLOW
Result object indicating underflow, meaning that either the input buffer has been completely consumed or, if the input buffer is not yet empty, that additional input is required. |
static CoderResult |
CoderResult.OVERFLOW
Result object indicating overflow, meaning that there is insufficient room in the output buffer. |
Methods in java.nio.charset that return CoderResult | |
static CoderResult |
CoderResult.malformedForLength(int length)
Static factory method that returns the unique object describing a malformed-input error of the given length. |
static CoderResult |
CoderResult.unmappableForLength(int length)
Static factory method that returns the unique result object describing an unmappable-character error of the given length. |
CoderResult |
CharsetDecoder.decode(ByteBuffer in,
CharBuffer out,
boolean endOfInput)
Decodes as many bytes as possible from the given input buffer, writing the results to the given output buffer. |
CoderResult |
CharsetDecoder.flush(CharBuffer out)
Flushes this decoder. |
protected CoderResult |
CharsetDecoder.implFlush(CharBuffer out)
Flushes this decoder. |
protected abstract CoderResult |
CharsetDecoder.decodeLoop(ByteBuffer in,
CharBuffer out)
Decodes one or more bytes into one or more characters. |
CoderResult |
CharsetEncoder.encode(CharBuffer in,
ByteBuffer out,
boolean endOfInput)
Encodes as many characters as possible from the given input buffer, writing the results to the given output buffer. |
CoderResult |
CharsetEncoder.flush(ByteBuffer out)
Flushes this encoder. |
protected CoderResult |
CharsetEncoder.implFlush(ByteBuffer out)
Flushes this encoder. |
protected abstract CoderResult |
CharsetEncoder.encodeLoop(CharBuffer in,
ByteBuffer out)
Encodes one or more characters into one or more bytes. |
|
JavaTM 2 Platform Std. Ed. v1.4.2 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.