Package com.qfs.bitmap
Interface IDecodeProcedure
-
public interface IDecodeProcedureA procedure that is called during decoding of a bitmap index.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvalueDecoded(long row, int decodedValue)Procedure entry called when a row has been decoded.
-
-
-
Method Detail
-
valueDecoded
boolean valueDecoded(long row, int decodedValue)Procedure entry called when a row has been decoded. Note that no supposition is made on the row decoding order, but that a bitmap index can decode all of its rows.- Parameters:
row- decoded rowdecodedValue- value that was decoded for that row- Returns:
trueif the procedure wants to continue,falseif the procedure considers its task is over
-
-