|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IAutoboxBTree
An interface defining non-batch methods for inserting, removing, lookup, and
containment tests where keys and values are implicitly converted to and from
byte[]s using the ITupleSerializer configured on the
IndexMetadata object for the IIndex.
IRangeQuery variants with automatic conversion of
application keys to unsigned byte[] keys.| Method Summary | |
|---|---|
boolean |
contains(Object key)
Return true iff there is an entry for the key. |
Object |
insert(Object key,
Object value)
Insert with auto-magic handling of keys and value objects. |
Object |
lookup(Object key)
Lookup a value for a key. |
Object |
remove(Object key)
Remove the key and its associated value. |
| Method Detail |
|---|
Object insert(Object key,
Object value)
key - The key is implicitly converted to an unsigned
byte[].value - The value is implicitly converted to a byte[].
null if there was
no value stored under that key.Object lookup(Object key)
key - The key is implicitly converted to an unsigned
byte[].
null if there is no
entry for that key.boolean contains(Object key)
key - The key is implicitly converted to an unsigned
byte[].
Object remove(Object key)
key - The key is implicitly converted to an unsigned
byte[].
null if the key was not found.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||