package
java.nio
Provides buffers that help handling data.
more...
Classes
Exceptions
BufferOverflowException |
A BufferOverflowException is thrown when you try to write
elements to a buffer, but there is not enough remaining space in the
buffer. |
BufferUnderflowException |
A BufferUnderflowException is thrown when you try to read
elements from a buffer, but there is not enough remaining elements in the
buffer. |
InvalidMarkException |
A InvalidMarkException is thrown when reset()
is called on a buffer, but there is no mark set previously. |
ReadOnlyBufferException |
A ReadOnlyBufferException is thrown when some write operation
is called on a readonly buffer. |