ShortBuffer API:
The java.nio.ShortBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static ShortBuffer | wrap(short [] array) | The wrap(....) method wrapping an existing short array into short buffer. |
Buffer API:
The java.nio.Buffer class extends java.lang.Object class. It provides the following methods:
| Return type | Method | Description |
| final boolean | hasRemaining() | The hasRemaining() method tell whether there are any elements in buffer or not. |
import java.nio.*;
|
|
C:\>java ShortRemain Content is available in buffer. Content is not available in buffer. |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.