public class BitSet
extends Object
GDK enhancements for BitSet.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public BitSet |
and(BitSet right)Bitwise AND together two BitSets. |
|
public BitSet |
bitwiseNegate()Bitwise NEGATE a BitSet. |
|
public boolean |
getAt(int index)Support the subscript operator for a Bitset |
|
public BitSet |
getAt(IntRange range)Support retrieving a subset of a BitSet using a Range |
|
public BitSet |
leftShift(Number operand)Implementation of the left shift operator for BitSets, returning a new BitSet and leaving the original unchanged. |
|
public BitSet |
or(BitSet right)Bitwise OR together two BitSets. |
|
public void |
putAt(IntRange range, boolean value)Support assigning a range of values with a single assignment statement. |
|
public void |
putAt(int index, boolean value)Support subscript-style assignment for a BitSet. |
|
public BitSet |
rightShift(Number operand)Implementation of the right shift operator for BitSets, returning a new BitSet and leaving the original unchanged. |
|
public BitSet |
rightShiftUnsigned(Number operand)Implementation of the right shift (unsigned) operator for BitSets, returning a new BitSet and leaving the original unchanged. |
|
public BitSet |
xor(BitSet right)Bitwise XOR together two BitSets. |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Bitwise AND together two BitSets.
right - another BitSet to bitwise ANDBitwise NEGATE a BitSet.
Support the subscript operator for a Bitset
index - index to retrieveSupport retrieving a subset of a BitSet using a Range
range - a Range defining the desired subset Implementation of the left shift operator for BitSets,
returning a new BitSet and leaving the original unchanged.
The intValue() is taken for the shift distance for non-integer operands.
operand - the shift distance by which to shift the BitSet leftBitwise OR together two BitSets. Called when the '|' operator is used between two bit sets.
right - another BitSet to bitwise ORSupport assigning a range of values with a single assignment statement.
range - the range of values to setvalue - valueSupport subscript-style assignment for a BitSet.
index - index of the entry to setvalue - value Implementation of the right shift operator for BitSets,
returning a new BitSet and leaving the original unchanged.
The intValue() is taken for the shift distance for non-integer operands.
operand - the shift distance by which to right shift the BitSet Implementation of the right shift (unsigned) operator for BitSets,
returning a new BitSet and leaving the original unchanged.
The intValue() is taken for the shift distance for non-integer operands.
operand - the shift distance by which to right shift (unsigned) the BitSet