Package jetbrains.buildServer.util
Class ReadOnlyBitSet
- java.lang.Object
-
- java.util.BitSet
-
- jetbrains.buildServer.util.ReadOnlyBitSet
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ReadOnlyBitSet extends BitSet
- Author:
- Pavel.Sher Date: 10.08.2007
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReadOnlyBitSet()
ReadOnlyBitSet(int index)
ReadOnlyBitSet(BitSet bits)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
and(BitSet set)
void
andNot(BitSet set)
void
clear()
void
clear(int bitIndex)
void
clear(int fromIndex, int toIndex)
void
flip(int bitIndex)
void
flip(int fromIndex, int toIndex)
void
or(BitSet 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)
void
xor(BitSet set)
-
Methods inherited from class java.util.BitSet
cardinality, clone, equals, get, get, hashCode, intersects, isEmpty, length, nextClearBit, nextSetBit, previousClearBit, previousSetBit, size, stream, toByteArray, toLongArray, toString, valueOf, valueOf, valueOf, valueOf
-
-
-
-
Constructor Detail
-
ReadOnlyBitSet
public ReadOnlyBitSet()
-
ReadOnlyBitSet
public ReadOnlyBitSet(BitSet bits)
-
ReadOnlyBitSet
public ReadOnlyBitSet(int index)
-
-