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 voidand(BitSet set)voidandNot(BitSet set)voidclear()voidclear(int bitIndex)voidclear(int fromIndex, int toIndex)voidflip(int bitIndex)voidflip(int fromIndex, int toIndex)voidor(BitSet set)voidset(int bitIndex)voidset(int bitIndex, boolean value)voidset(int fromIndex, int toIndex)voidset(int fromIndex, int toIndex, boolean value)voidxor(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)
-
-