Package com.qfs.index
Interface IIndex
-
- All Known Subinterfaces:
IIndexTransaction,IIndexVersion,IInternalIndexVersion
- All Known Implementing Classes:
LazyDeleteLinkedIndexTransaction,LazyDeleteLinkedIndexVersion
@Deprecated(since="6.0.7", forRemoval=true) public interface IIndex
Deprecated, for removal: This API element is subject to removal in a future version.An index that associates abitmapof integer values to a key.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidfetchValues(int[] keys, Supplier<IClearableBitmap> result)Deprecated, for removal: This API element is subject to removal in a future version.Adds the values associated with the given keys in result.voidfetchValues(int key, Supplier<IClearableBitmap> result)Deprecated, for removal: This API element is subject to removal in a future version.Adds the values associated with the given key in result.IBitmapgetValues(int key)Deprecated, for removal: This API element is subject to removal in a future version.Returns the values associated with the given key, ornullif none are associated with it.
-
-
-
Method Detail
-
getValues
IBitmap getValues(int key)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the values associated with the given key, ornullif none are associated with it.- Parameters:
key- the key to get the value for- Returns:
- its associated values
-
fetchValues
void fetchValues(int key, Supplier<IClearableBitmap> result)Deprecated, for removal: This API element is subject to removal in a future version.Adds the values associated with the given key in result.- Parameters:
key- the key to get the value forresult- thebitmapto add the associated values
-
fetchValues
default void fetchValues(int[] keys, Supplier<IClearableBitmap> result)Deprecated, for removal: This API element is subject to removal in a future version.Adds the values associated with the given keys in result.- Parameters:
keys- the keys to get the value forresult- thebitmapto add the associated values
-
-