Package com.mchange.io
Interface IOSequentialByteArrayMap.Cursor
-
- Enclosing interface:
- IOSequentialByteArrayMap
public static interface IOSequentialByteArrayMap.Cursor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteCurrent()ByteArrayBindingfind(byte[] key)ByteArrayBindingfindGreaterThanOrEqual(byte[] bytes)ByteArrayBindingfindLessThanOrEqual(byte[] bytes)ByteArrayBindinggetCurrent()ByteArrayBindinggetFirst()ByteArrayBindinggetLast()ByteArrayBindinggetNext()ByteArrayBindinggetPrevious()voidreplaceCurrent(byte[] value)
-
-
-
Method Detail
-
getFirst
ByteArrayBinding getFirst() throws java.io.IOException
- Throws:
java.io.IOException
-
getNext
ByteArrayBinding getNext() throws java.io.IOException
- Throws:
java.io.IOException
-
getPrevious
ByteArrayBinding getPrevious() throws java.io.IOException
- Throws:
java.io.IOException
-
getLast
ByteArrayBinding getLast() throws java.io.IOException
- Throws:
java.io.IOException
-
getCurrent
ByteArrayBinding getCurrent() throws java.io.IOException
- Throws:
java.io.IOException
-
find
ByteArrayBinding find(byte[] key) throws java.io.IOException
- Throws:
java.io.IOException
-
findGreaterThanOrEqual
ByteArrayBinding findGreaterThanOrEqual(byte[] bytes) throws java.io.IOException
- Throws:
java.io.IOException
-
findLessThanOrEqual
ByteArrayBinding findLessThanOrEqual(byte[] bytes) throws java.io.IOException
- Throws:
java.io.IOException
-
deleteCurrent
void deleteCurrent() throws java.io.IOException- Throws:
java.io.IOException
-
replaceCurrent
void replaceCurrent(byte[] value) throws java.io.IOException- Throws:
java.io.IOException
-
-