Class BitField
- java.lang.Object
-
- org.apache.commons.lang.BitField
-
@Deprecated(since="2021-04-30") public class BitField extends java.lang.Object
Deprecated.Commons Lang 2 is in maintenance mode. Commons Lang 3 should be used instead.Operations on bit-mapped fields.
- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description BitField(int mask)
Deprecated.Creates a BitField instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
clear(int holder)
Deprecated.Clears the bits.byte
clearByte(byte holder)
Deprecated.Clears the bits.short
clearShort(short holder)
Deprecated.Clears the bits.int
getRawValue(int holder)
Deprecated.Obtains the value for the specified BitField, unshifted.short
getShortRawValue(short holder)
Deprecated.Obtains the value for the specified BitField, unshifted.short
getShortValue(short holder)
Deprecated.Obtains the value for the specified BitField, appropriately shifted right, as a short.int
getValue(int holder)
Deprecated.Obtains the value for the specified BitField, appropriately shifted right.boolean
isAllSet(int holder)
Deprecated.Returns whether all of the bits are set or not.boolean
isSet(int holder)
Deprecated.Returns whether the field is set or not.int
set(int holder)
Deprecated.Sets the bits.int
setBoolean(int holder, boolean flag)
Deprecated.Sets a boolean BitField.byte
setByte(byte holder)
Deprecated.Sets the bits.byte
setByteBoolean(byte holder, boolean flag)
Deprecated.Sets a boolean BitField.short
setShort(short holder)
Deprecated.Sets the bits.short
setShortBoolean(short holder, boolean flag)
Deprecated.Sets a boolean BitField.short
setShortValue(short holder, short value)
Deprecated.Replaces the bits with new values.int
setValue(int holder, int value)
Deprecated.Replaces the bits with new values.
-
-
-
Method Detail
-
getValue
public int getValue(int holder)
Deprecated.Obtains the value for the specified BitField, appropriately shifted right.
Many users of a BitField will want to treat the specified bits as an int value, and will not want to be aware that the value is stored as a BitField (and so shifted left so many bits).
- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
- the selected bits, shifted right appropriately
- See Also:
setValue(int,int)
-
getShortValue
public short getShortValue(short holder)
Deprecated.Obtains the value for the specified BitField, appropriately shifted right, as a short.
Many users of a BitField will want to treat the specified bits as an int value, and will not want to be aware that the value is stored as a BitField (and so shifted left so many bits).
- Parameters:
holder
- the short data containing the bits we're interested in- Returns:
- the selected bits, shifted right appropriately
- See Also:
setShortValue(short,short)
-
getRawValue
public int getRawValue(int holder)
Deprecated.Obtains the value for the specified BitField, unshifted.
- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
- the selected bits
-
getShortRawValue
public short getShortRawValue(short holder)
Deprecated.Obtains the value for the specified BitField, unshifted.
- Parameters:
holder
- the short data containing the bits we're interested in- Returns:
- the selected bits
-
isSet
public boolean isSet(int holder)
Deprecated.Returns whether the field is set or not.
This is most commonly used for a single-bit field, which is often used to represent a boolean value; the results of using it for a multi-bit field is to determine whether *any* of its bits are set.
- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
true
if any of the bits are set, elsefalse
-
isAllSet
public boolean isAllSet(int holder)
Deprecated.Returns whether all of the bits are set or not.
This is a stricter test than
isSet(int)
, in that all of the bits in a multi-bit set must be set for this method to returntrue
.- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
true
if all of the bits are set, elsefalse
-
setValue
public int setValue(int holder, int value)
Deprecated.Replaces the bits with new values.
- Parameters:
holder
- the int data containing the bits we're interested invalue
- the new value for the specified bits- Returns:
- the value of holder with the bits from the value parameter replacing the old bits
- See Also:
getValue(int)
-
setShortValue
public short setShortValue(short holder, short value)
Deprecated.Replaces the bits with new values.
- Parameters:
holder
- the short data containing the bits we're interested invalue
- the new value for the specified bits- Returns:
- the value of holder with the bits from the value parameter replacing the old bits
- See Also:
getShortValue(short)
-
clear
public int clear(int holder)
Deprecated.Clears the bits.
- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
- the value of holder with the specified bits cleared
(set to
0
)
-
clearShort
public short clearShort(short holder)
Deprecated.Clears the bits.
- Parameters:
holder
- the short data containing the bits we're interested in- Returns:
- the value of holder with the specified bits cleared
(set to
0
)
-
clearByte
public byte clearByte(byte holder)
Deprecated.Clears the bits.
- Parameters:
holder
- the byte data containing the bits we're interested in- Returns:
- the value of holder with the specified bits cleared
(set to
0
)
-
set
public int set(int holder)
Deprecated.Sets the bits.
- Parameters:
holder
- the int data containing the bits we're interested in- Returns:
- the value of holder with the specified bits set
to
1
-
setShort
public short setShort(short holder)
Deprecated.Sets the bits.
- Parameters:
holder
- the short data containing the bits we're interested in- Returns:
- the value of holder with the specified bits set
to
1
-
setByte
public byte setByte(byte holder)
Deprecated.Sets the bits.
- Parameters:
holder
- the byte data containing the bits we're interested in- Returns:
- the value of holder with the specified bits set
to
1
-
setBoolean
public int setBoolean(int holder, boolean flag)
Deprecated.Sets a boolean BitField.
- Parameters:
holder
- the int data containing the bits we're interested inflag
- indicating whether to set or clear the bits- Returns:
- the value of holder with the specified bits set or cleared
-
setShortBoolean
public short setShortBoolean(short holder, boolean flag)
Deprecated.Sets a boolean BitField.
- Parameters:
holder
- the short data containing the bits we're interested inflag
- indicating whether to set or clear the bits- Returns:
- the value of holder with the specified bits set or cleared
-
setByteBoolean
public byte setByteBoolean(byte holder, boolean flag)
Deprecated.Sets a boolean BitField.
- Parameters:
holder
- the byte data containing the bits we're interested inflag
- indicating whether to set or clear the bits- Returns:
- the value of holder with the specified bits set or cleared
-
-