Returns the number of remaining elements in this buffer, that is limit - position. @return the number of remaining elements in this buffer.
()
| 242 | * @return the number of remaining elements in this buffer. |
| 243 | */ |
| 244 | public final int remaining() { |
| 245 | return limit - position; |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Resets the position of this buffer to the <code>mark</code>. |
no outgoing calls
no test coverage detected