Package | Description |
---|---|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Method and Description |
---|---|
LongBitSet |
LongBitSet.clone() |
static LongBitSet |
LongBitSet.ensureCapacity(LongBitSet bits,
long numBits)
If the given
LongBitSet is large enough to hold
numBits+1 , returns the given bits, otherwise returns a new
LongBitSet which can hold the requested number of bits. |
Modifier and Type | Method and Description |
---|---|
void |
LongBitSet.and(LongBitSet other)
this = this AND other
|
void |
LongBitSet.andNot(LongBitSet other)
this = this AND NOT other
|
static LongBitSet |
LongBitSet.ensureCapacity(LongBitSet bits,
long numBits)
If the given
LongBitSet is large enough to hold
numBits+1 , returns the given bits, otherwise returns a new
LongBitSet which can hold the requested number of bits. |
boolean |
LongBitSet.intersects(LongBitSet other)
returns true if the sets have any elements in common
|
void |
LongBitSet.or(LongBitSet other)
this = this OR other
|
void |
LongBitSet.xor(LongBitSet other)
this = this XOR other
|
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.