Class BitSet

java.lang.Object
zombie.entity.util.BitSet

public class BitSet extends Object
  • Constructor Details

    • BitSet

      public BitSet()
    • BitSet

      public BitSet(int nbits)
    • BitSet

      public BitSet(BitSet bitsToCpy)
  • Method Details

    • get

      public boolean get(int index)
    • getAndClear

      public boolean getAndClear(int index)
    • getAndSet

      public boolean getAndSet(int index)
    • set

      public void set(int index)
    • flip

      public void flip(int index)
    • clear

      public void clear(int index)
    • clear

      public void clear()
    • numBits

      public int numBits()
    • length

      public int length()
    • notEmpty

      public boolean notEmpty()
    • isEmpty

      public boolean isEmpty()
    • nextSetBit

      public int nextSetBit(int fromIndex)
    • nextClearBit

      public int nextClearBit(int fromIndex)
    • and

      public void and(BitSet other)
    • andNot

      public void andNot(BitSet other)
    • or

      public void or(BitSet other)
    • xor

      public void xor(BitSet other)
    • intersects

      public boolean intersects(BitSet other)
    • containsAll

      public boolean containsAll(BitSet other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object