Uses of Class java.nio.CharBuffer

Uses in package java.lang

Methods with parameter type java.nio.CharBuffer

int
Adds the character data supplied by this Readable to the specified character buffer.

Uses in package java.nio.charset

Methods with parameter type java.nio.CharBuffer

CoderResult
CharsetDecoder.decode(ByteBuffer in, CharBuffer out, boolean endOfInput)
CoderResult
ByteBuffer
ByteBuffer
CoderResult
CharsetEncoder.encode(CharBuffer in, ByteBuffer out, boolean endOfInput)
CoderResult
CoderResult
CoderResult

Methods with return type java.nio.CharBuffer

CharBuffer
CharBuffer

Uses in package java.io

Methods with parameter type java.nio.CharBuffer

int

Uses in package java.nio

Methods with parameter type java.nio.CharBuffer

int
Compares two CharBuffer objects.
CharBuffer
Writes the content of the the CharBUFFER src into the buffer.
int

Methods with return type java.nio.CharBuffer

CharBuffer
CharBuffer.allocate(int capacity)
Allocates a new CharBuffer object with a given capacity.
CharBuffer
CharBuffer
CharBuffer
CharBuffer.append(CharSequence cs, int start, int end)
CharBuffer
Creates a view of this byte buffer as a char buffer.
CharBuffer
Creates a new read-only CharBuffer that shares this buffer's content.
CharBuffer
Compacts this buffer.
CharBuffer
Creates a new CharBuffer that shares this buffer's content.
CharBuffer
CharBuffer.get(char[] dst)
This method transfers chars from this buffer into the given destination array.
CharBuffer
CharBuffer.get(char[] dst, int offset, int length)
This method transfers chars from this buffer into the given destination array.
CharBuffer
CharBuffer.put(char b)
Writes the char at this buffer's current position, and then increments the position.
CharBuffer
CharBuffer.put(char[] src)
Writes the content of the the char array src into the buffer.
CharBuffer
CharBuffer.put(char[] src, int offset, int length)
Writes the content of the the char array src into the buffer.
CharBuffer
CharBuffer.put(int index, char b)
Absolute put method.
CharBuffer
Relative put method.
CharBuffer
CharBuffer.put(String str, int start, int length)
Relative put method.
CharBuffer
Writes the content of the the CharBUFFER src into the buffer.
CharBuffer
Creates a new CharBuffer whose content is a shared subsequence of this buffer's content.
CharBuffer
CharBuffer.wrap(char[] array)
Wraps a char array into a CharBuffer object.
CharBuffer
CharBuffer.wrap(char[] array, int offset, int length)
Wraps a char array into a CharBuffer object.
CharBuffer
Wraps a character sequence into a CharBuffer object.
CharBuffer
CharBuffer.wrap(CharSequence seq, int start, int end)
Wraps a character sequence into a CharBuffer object.