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 void
deleteCurrent()
ByteArrayBinding
find(byte[] key)
ByteArrayBinding
findGreaterThanOrEqual(byte[] bytes)
ByteArrayBinding
findLessThanOrEqual(byte[] bytes)
ByteArrayBinding
getCurrent()
ByteArrayBinding
getFirst()
ByteArrayBinding
getLast()
ByteArrayBinding
getNext()
ByteArrayBinding
getPrevious()
void
replaceCurrent(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
-
-