Uses of Class
org.apache.commons.lang3.util.FluentBitSet
Packages that use FluentBitSet
-
Uses of FluentBitSet in org.apache.commons.lang3.util
Methods in org.apache.commons.lang3.util that return FluentBitSetModifier and TypeMethodDescriptionPerforms a logical AND of this target bit set with the argument bit set.FluentBitSet.and
(FluentBitSet set) Performs a logical AND of this target bit set with the argument bit set.FluentBitSet.andNot
(FluentBitSet set) FluentBitSet.clear()
Sets all of the bits in this BitSet tofalse
.FluentBitSet.clear
(int bitIndex) Sets the bit specified by the index tofalse
.FluentBitSet.clear
(int... bitIndexArray) Sets the bits specified by the indexes tofalse
.FluentBitSet.clear
(int fromIndex, int toIndex) Sets the bits from the specifiedfromIndex
(inclusive) to the specifiedtoIndex
(exclusive) tofalse
.FluentBitSet.flip
(int bitIndex) Sets the bit at the specified index to the complement of its current value.FluentBitSet.flip
(int fromIndex, int toIndex) Sets each bit from the specifiedfromIndex
(inclusive) to the specifiedtoIndex
(exclusive) to the complement of its current value.FluentBitSet.get
(int fromIndex, int toIndex) Performs a logical OR of this bit set with the bit set argument.FluentBitSet.or
(FluentBitSet set) Performs a logical OR of this bit set with the bit set argument.FluentBitSet.or
(FluentBitSet... set) Performs a logical OR of this bit set with the bit set arguments.FluentBitSet.set
(int bitIndex) Sets the bit at the specified index totrue
.FluentBitSet.set
(int... bitIndexArray) Sets the bit at the specified indexes totrue
.FluentBitSet.set
(int bitIndex, boolean value) Sets the bit at the specified index to the specified value.FluentBitSet.set
(int fromIndex, int toIndex) Sets the bits from the specifiedfromIndex
(inclusive) to the specifiedtoIndex
(exclusive) totrue
.FluentBitSet.set
(int fromIndex, int toIndex, boolean value) Sets the bits from the specifiedfromIndex
(inclusive) to the specifiedtoIndex
(exclusive) to the specified value.FluentBitSet.setInclusive
(int fromIndex, int toIndex) Sets the bits from the specifiedfromIndex
(inclusive) to the specifiedtoIndex
(inclusive) totrue
.Performs a logical XOR of this bit set with the bit set argument.FluentBitSet.xor
(FluentBitSet set) Performs a logical XOR of this bit set with the bit set argument.Methods in org.apache.commons.lang3.util with parameters of type FluentBitSetModifier and TypeMethodDescriptionFluentBitSet.and
(FluentBitSet set) Performs a logical AND of this target bit set with the argument bit set.FluentBitSet.andNot
(FluentBitSet set) boolean
FluentBitSet.intersects
(FluentBitSet set) FluentBitSet.or
(FluentBitSet set) Performs a logical OR of this bit set with the bit set argument.FluentBitSet.or
(FluentBitSet... set) Performs a logical OR of this bit set with the bit set arguments.FluentBitSet.xor
(FluentBitSet set) Performs a logical XOR of this bit set with the bit set argument.