Package net.sf.cglib.core
Class TinyBitSet
- java.lang.Object
-
- net.sf.cglib.core.TinyBitSet
-
@Deprecated public class TinyBitSet extends java.lang.ObjectDeprecated.
-
-
Constructor Summary
Constructors Constructor Description TinyBitSet()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intcardinality()Deprecated.If bit 31 is set then this method results in an infinite loop.voidclear(int index)Deprecated.private static intgcount(int x)Deprecated.booleanget(int index)Deprecated.intlength()Deprecated.private static intlog2(int i)Deprecated.voidset(int index)Deprecated.private static inttopbit(int i)Deprecated.
-
-
-
Method Detail
-
gcount
private static int gcount(int x)
Deprecated.
-
topbit
private static int topbit(int i)
Deprecated.
-
log2
private static int log2(int i)
Deprecated.
-
length
public int length()
Deprecated.
-
cardinality
public int cardinality()
Deprecated.If bit 31 is set then this method results in an infinite loop.- Returns:
- the number of bits set to
truein this TinyBitSet.
-
get
public boolean get(int index)
Deprecated.
-
set
public void set(int index)
Deprecated.
-
clear
public void clear(int index)
Deprecated.
-
-