| Constructor and Description |
|---|
IntBitSet() |
IntBitSet(int disregard) |
IntBitSet(int[] ints) |
IntBitSet(int start,
int end)
Constructs a CharBitSet that includes all bits between start and end, inclusive.
|
| Modifier and Type | Method and Description |
|---|---|
IntBitSet |
and(IntBitSet set) |
IntBitSet |
andNot(IntBitSet set) |
int |
cardinality() |
void |
clear() |
void |
clear(int bitIndex) |
void |
clear(int fromIndex,
int toIndex) |
IntBitSet |
clone() |
boolean |
equals(Object o) |
void |
flip(int bitIndex) |
void |
flip(int fromIndex,
int toIndex) |
boolean |
get(int bitIndex) |
IntBitSet |
get(int fromIndex,
int toIndex) |
int |
hashCode() |
boolean |
intersects(IntBitSet set) |
boolean |
isEmpty() |
int |
length() |
IntBitSet |
negate() |
int |
nextClearBit(int current) |
int |
nextSetBit(int current) |
IntBitSet |
or(IntBitSet set) |
void |
set(int bitIndex) |
void |
set(int bitIndex,
boolean value) |
void |
set(int fromIndex,
int toIndex) |
void |
set(int fromIndex,
int toIndex,
boolean value) |
int |
size() |
IntBitSet |
xor(IntBitSet set) |
public IntBitSet()
public IntBitSet(int disregard)
public IntBitSet(int start, int end)
start - inclusiveend - inclusivepublic IntBitSet(int[] ints)
public void flip(int bitIndex)
public void flip(int fromIndex, int toIndex)
public void set(int bitIndex)
public void set(int bitIndex, boolean value)
public void set(int fromIndex, int toIndex)
public void set(int fromIndex, int toIndex, boolean value)
public void clear(int bitIndex)
public void clear(int fromIndex, int toIndex)
public void clear()
public boolean get(int bitIndex)
public int length()
public boolean isEmpty()
public boolean intersects(IntBitSet set)
public int cardinality()
public int nextSetBit(int current)
public int nextClearBit(int current)
public int size()
Copyright © 2016. All rights reserved.