| Package | Description |
|---|---|
| com.orientechnologies.orient.core.storage.impl.local |
Contains all the class involved on the "local" implementation of the OStorage interface.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
OAbstractPaginatedStorage.callIndexEngine(boolean atomicOperation,
boolean readOperation,
int indexId,
OIndexEngineCallback<T> callback) |
void |
OAbstractPaginatedStorage.clearIndex(int indexId) |
void |
OAbstractPaginatedStorage.deleteIndexEngine(int indexId) |
OIndexCursor |
OAbstractPaginatedStorage.getIndexCursor(int indexId,
OIndexEngine.ValuesTransformer valuesTransformer) |
OIndexCursor |
OAbstractPaginatedStorage.getIndexDescCursor(int indexId,
OIndexEngine.ValuesTransformer valuesTransformer) |
OIndexEngine |
OAbstractPaginatedStorage.getIndexEngine(int indexId) |
Object |
OAbstractPaginatedStorage.getIndexFirstKey(int indexId) |
OIndexKeyCursor |
OAbstractPaginatedStorage.getIndexKeyCursor(int indexId) |
Object |
OAbstractPaginatedStorage.getIndexLastKey(int indexId) |
long |
OAbstractPaginatedStorage.getIndexSize(int indexId,
OIndexEngine.ValuesTransformer transformer) |
Object |
OAbstractPaginatedStorage.getIndexValue(int indexId,
Object key) |
boolean |
OAbstractPaginatedStorage.hasIndexRangeQuerySupport(int indexId) |
boolean |
OAbstractPaginatedStorage.indexContainsKey(int indexId,
Object key) |
OIndexCursor |
OAbstractPaginatedStorage.iterateIndexEntriesBetween(int indexId,
Object rangeFrom,
boolean fromInclusive,
Object rangeTo,
boolean toInclusive,
boolean ascSortOrder,
OIndexEngine.ValuesTransformer transformer) |
OIndexCursor |
OAbstractPaginatedStorage.iterateIndexEntriesMajor(int indexId,
Object fromKey,
boolean isInclusive,
boolean ascSortOrder,
OIndexEngine.ValuesTransformer transformer) |
OIndexCursor |
OAbstractPaginatedStorage.iterateIndexEntriesMinor(int indexId,
Object toKey,
boolean isInclusive,
boolean ascSortOrder,
OIndexEngine.ValuesTransformer transformer) |
void |
OAbstractPaginatedStorage.putIndexValue(int indexId,
Object key,
Object value) |
boolean |
OAbstractPaginatedStorage.removeKeyFromIndex(int indexId,
Object key) |
void |
OAbstractPaginatedStorage.updateIndexEntry(int indexId,
Object key,
Callable<Object> valueCreator) |
boolean |
OAbstractPaginatedStorage.validatedPutIndexValue(int indexId,
Object key,
OIdentifiable value,
OIndexEngine.Validator<Object,OIdentifiable> validator)
Puts the given value under the given key into this storage for the index with the given index id.
|
Copyright © 2009–2025 OrientDB. All rights reserved.