Package nl.tue.storage
Interface EqualOperation<K>
-
- All Known Implementing Classes:
AbstractFixedLengthListCompressor,ByteListCompressor,CompressableCompressor,EqualOperation.Default,IntListCompressor,LongListCompressor,ShortListCompressor,StateCompressor
public interface EqualOperation<K>Checks for equality between an object and a location in a CompressedStore.- Author:
- bfvdonge
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classEqualOperation.Default<K>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(K object, CompressedStore<K> store, long l)Check for equality between a given object and a location in the store.
-
-
-
Method Detail
-
equals
boolean equals(K object, CompressedStore<K> store, long l) throws StorageException, java.io.IOException
Check for equality between a given object and a location in the store. Should return true, if and only if the given object is indeed stored at index l in the store.- Parameters:
object-store-l-- Returns:
- Throws:
StorageExceptionjava.io.IOException
-
-