Flips this buffer. The limit is set to the current position, then the position is set to zero, and the mark is cleared. The content of this buffer is not changed. @return this buffer.
()
| 126 | * @return this buffer. |
| 127 | */ |
| 128 | public final Buffer flip() { |
| 129 | limit = position; |
| 130 | position = 0; |
| 131 | mark = UNSET_MARK; |
| 132 | return this; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Indicates if there are elements remaining in this buffer, that is if |
no outgoing calls
no test coverage detected