Uses of Class
net.thevpc.common.collections.BitSet2

  • Uses of BitSet2 in net.thevpc.common.collections

    Methods in net.thevpc.common.collections that return BitSet2
    Modifier and Type
    Method
    Description
    BitSet2.clone()
    Cloning this BitSet produces a new BitSet that is equal to it.
    BitSet2.copy()
     
    BitSet2.get(int fromIndex, int toIndex)
    Returns a new BitSet composed of bits from this BitSet from fromIndex (inclusive) to toIndex (exclusive).
    static BitSet2
    BitSet2.valueOf(byte[] bytes)
    Returns a new bit set containing all the bits in the given byte array.
    static BitSet2
    BitSet2.valueOf(long[] longs)
    Returns a new bit set containing all the bits in the given long array.
    static BitSet2
    BitSet2.valueOf(ByteBuffer bb)
    Returns a new bit set containing all the bits in the given byte buffer between its position and limit.
    static BitSet2
    BitSet2.valueOf(LongBuffer lb)
    Returns a new bit set containing all the bits in the given long buffer between its position and limit.
    Methods in net.thevpc.common.collections with parameters of type BitSet2
    Modifier and Type
    Method
    Description
    void
    BitSet2.and(BitSet2 set)
    Performs a logical AND of this target bit set with the argument bit set.
    void
    BitSet2.andNot(BitSet2 set)
    Clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet.
    boolean
    BitSet2.intersects(BitSet2 set)
    Returns true if the specified BitSet has any bits set to true that are also set to true in this BitSet.
    void
    BitSet2.or(BitSet2 set)
    Performs a logical OR of this bit set with the bit set argument.
    void
    BitSet2.set(int bitIndex, BitSet2 value, int from, int len)
     
    void
    BitSet2.xor(BitSet2 set)
    Performs a logical XOR of this bit set with the bit set argument.