Return the value for the current entry. The underlying storage for the returned slice is valid only until the next modification of the iterator. REQUIRES: !AtEnd() && !AtStart() @return value for the current entry.
()
| 46 | * @return value for the current entry. |
| 47 | */ |
| 48 | public byte[] value() { |
| 49 | assert(isOwningHandle()); |
| 50 | return value0(nativeHandle_); |
| 51 | } |
| 52 | |
| 53 | @Override protected final native void disposeInternal(final long handle); |
| 54 | @Override final native boolean isValid0(long handle); |