java.lang.Object
org.bitlap.roaringbitmap.longlong.LongConsumerRelativeRangeAdapter
- 所有已实现的接口:
RelativeRangeConsumer
Wrapper to use a LongConsumer where a RelativeRangeConsumer is expected.
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidacceptAbsent(int relativePos) Consume a single absent value at relativePos.voidacceptAllAbsent(int relativeFrom, int relativeTo) Consume consecutive absent values in the range [relativeFrom, relativeTo).voidacceptAllPresent(int relativeFrom, int relativeTo) Consume consecutive present values in the range [relativeFrom, relativeTo).voidacceptPresent(int relativePos) Consume a single present value at relativePos.
-
构造器详细资料
-
LongConsumerRelativeRangeAdapter
-
-
方法详细资料
-
acceptPresent
public void acceptPresent(int relativePos) 从接口复制的说明:RelativeRangeConsumerConsume a single present value at relativePos.- 指定者:
acceptPresent在接口中RelativeRangeConsumer
-
acceptAbsent
public void acceptAbsent(int relativePos) 从接口复制的说明:RelativeRangeConsumerConsume a single absent value at relativePos.- 指定者:
acceptAbsent在接口中RelativeRangeConsumer
-
acceptAllPresent
public void acceptAllPresent(int relativeFrom, int relativeTo) 从接口复制的说明:RelativeRangeConsumerConsume consecutive present values in the range [relativeFrom, relativeTo).- 指定者:
acceptAllPresent在接口中RelativeRangeConsumer
-
acceptAllAbsent
public void acceptAllAbsent(int relativeFrom, int relativeTo) 从接口复制的说明:RelativeRangeConsumerConsume consecutive absent values in the range [relativeFrom, relativeTo).- 指定者:
acceptAllAbsent在接口中RelativeRangeConsumer
-