This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 6f063db56015211f38a283839a19d42079cf54e3
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 14:56:51 2026 -0500

    Javadoc
---
 .../java/org/apache/commons/lang3/BitField.java    | 246 +++++++++------------
 1 file changed, 103 insertions(+), 143 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/BitField.java 
b/src/main/java/org/apache/commons/lang3/BitField.java
index f2563e85c..edf4fdb4e 100644
--- a/src/main/java/org/apache/commons/lang3/BitField.java
+++ b/src/main/java/org/apache/commons/lang3/BitField.java
@@ -14,73 +14,72 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.commons.lang3;
 
 /**
- * Supports operations on bit-mapped fields. Instances of this class can be
- * used to store a flag or data within an {@code int}, {@code short} or
- * {@code byte}.
- *
- * <p>Each {@link BitField} is constructed with a mask value, which indicates
- * the bits that will be used to store and retrieve the data for that field.
- * For instance, the mask {@code 0xFF} indicates the least-significant byte
- * should be used to store the data.</p>
- *
- * <p>As an example, consider a car painting machine that accepts
- * paint instructions as integers. Bit fields can be used to encode this:</p>
- *
- *<pre>
- *    // blue, green and red are 1 byte values (0-255) stored in the three 
least
- *    // significant bytes
- *    BitField blue = new BitField(0xFF);
- *    BitField green = new BitField(0xFF00);
- *    BitField red = new BitField(0xFF0000);
+ * Supports operations on bit-mapped fields. Instances of this class can be 
used to store a flag or data within an {@code int}, {@code short} or {@code 
byte}.
+ * <p>
+ * Each {@link BitField} is constructed with a mask value, which indicates the 
bits that will be used to store and retrieve the data for that field. For
+ * instance, the mask {@code 0xFF} indicates the least-significant byte should 
be used to store the data.
+ * </p>
+ * <p>
+ * As an example, consider a car painting machine that accepts paint 
instructions as integers. Bit fields can be used to encode this:
+ * </p>
  *
- *    // anyColor is a flag triggered if any color is used
- *    BitField anyColor = new BitField(0xFFFFFF);
+ * <pre>
  *
- *    // isMetallic is a single bit flag
- *    BitField isMetallic = new BitField(0x1000000);
- *</pre>
+ * // blue, green and red are 1 byte values (0-255) stored in the three least
+ * // significant bytes
+ * BitField blue = new BitField(0xFF);
  *
- * <p>Using these {@link BitField} instances, a paint instruction can be
- * encoded into an integer:</p>
+ * BitField green = new BitField(0xFF00);
  *
- *<pre>
- *    int paintInstruction = 0;
- *    paintInstruction = red.setValue(paintInstruction, 35);
- *    paintInstruction = green.setValue(paintInstruction, 100);
- *    paintInstruction = blue.setValue(paintInstruction, 255);
- *</pre>
+ * BitField red = new BitField(0xFF0000);
  *
- * <p>Flags and data can be retrieved from the integer:</p>
+ * // anyColor is a flag triggered if any color is used
+ * BitField anyColor = new BitField(0xFFFFFF);
  *
- *<pre>
- *    // Prints true if red, green or blue is non-zero
- *    System.out.println(anyColor.isSet(paintInstruction));   // prints true
+ * // isMetallic is a single bit flag
+ * BitField isMetallic = new BitField(0x1000000);
+ * </pre>
+ * <p>
+ * Using these {@link BitField} instances, a paint instruction can be encoded 
into an integer:
+ * </p>
  *
- *    // Prints value of red, green and blue
- *    System.out.println(red.getValue(paintInstruction));     // prints 35
- *    System.out.println(green.getValue(paintInstruction));   // prints 100
- *    System.out.println(blue.getValue(paintInstruction));    // prints 255
+ * <pre>
+ * int paintInstruction = 0;
+ * paintInstruction = red.setValue(paintInstruction, 35);
+ * paintInstruction = green.setValue(paintInstruction, 100);
+ * paintInstruction = blue.setValue(paintInstruction, 255);
+ * </pre>
+ * <p>
+ * Flags and data can be retrieved from the integer:
+ * </p>
  *
- *    // Prints true if isMetallic was set
- *    System.out.println(isMetallic.isSet(paintInstruction)); // prints false
- *</pre>
+ * <pre>
+ * // Prints true if red, green or blue is non-zero
+ * System.out.println(anyColor.isSet(paintInstruction)); // prints true
+ * // Prints value of red, green and blue
+ * System.out.println(red.getValue(paintInstruction)); // prints 35
+ * System.out.println(green.getValue(paintInstruction)); // prints 100
+ * System.out.println(blue.getValue(paintInstruction)); // prints 255
+ * // Prints true if isMetallic was set
+ * System.out.println(isMetallic.isSet(paintInstruction)); // prints false
+ * </pre>
  *
  * @since 2.0
  */
 public class BitField {
 
     private final int mask;
+
     private final int shiftCount;
 
     /**
      * Creates a BitField instance.
      *
-     * @param mask the mask specifying which bits apply to this
-     *  BitField. Bits that are set in this mask are the bits
-     *  that this BitField operates on
+     * @param mask the mask specifying which bits apply to this BitField. Bits 
that are set in this mask are the bits that this BitField operates on.
      */
     public BitField(final int mask) {
         this.mask = mask;
@@ -90,10 +89,8 @@ public BitField(final int mask) {
     /**
      * Clears the bits.
      *
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @return the value of holder with the specified bits cleared
-     *  (set to {@code 0})
+     * @param holder the int data containing the bits we're interested in.
+     * @return the value of holder with the specified bits cleared (set to 
{@code 0}).
      */
     public int clear(final int holder) {
         return holder & ~mask;
@@ -102,11 +99,8 @@ public int clear(final int holder) {
     /**
      * Clears the bits.
      *
-     * @param holder the byte data containing the bits we're
-     *  interested in
-     *
-     * @return the value of holder with the specified bits cleared
-     *  (set to {@code 0})
+     * @param holder the byte data containing the bits we're interested in.
+     * @return the value of holder with the specified bits cleared (set to 
{@code 0}).
      */
     public byte clearByte(final byte holder) {
         return (byte) clear(holder);
@@ -115,21 +109,18 @@ public byte clearByte(final byte holder) {
     /**
      * Clears the bits.
      *
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @return the value of holder with the specified bits cleared
-     *  (set to {@code 0})
+     * @param holder the short data containing the bits we're interested in.
+     * @return the value of holder with the specified bits cleared (set to 
{@code 0}).
      */
     public short clearShort(final short holder) {
         return (short) clear(holder);
     }
 
     /**
-     * Obtains the value for the specified BitField, unshifted.
+     * Gets the value for the specified BitField, unshifted.
      *
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @return the selected bits
+     * @param holder the int data containing the bits we're interested in.
+     * @return the selected bits.
      */
     public int getRawValue(final int holder) {
         return holder & mask;
@@ -138,45 +129,38 @@ public int getRawValue(final int holder) {
     /**
      * Obtains the value for the specified BitField, unshifted.
      *
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @return the selected bits
+     * @param holder the short data containing the bits we're interested in.
+     * @return the selected bits.
      */
     public short getShortRawValue(final short holder) {
         return (short) getRawValue(holder);
     }
 
     /**
-     * Obtains the value for the specified BitField, appropriately
-     * shifted right, as a short.
-     *
-     * <p>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).</p>
+     * Gets the value for the specified BitField, appropriately shifted right, 
as a short.
+     * <p>
+     * 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).
+     * </p>
      *
+     * @param holder the short data containing the bits we're interested in.
+     * @return the selected bits, shifted right appropriately.
      * @see #setShortValue(short,short)
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @return the selected bits, shifted right appropriately
      */
     public short getShortValue(final short holder) {
         return (short) getValue(holder);
     }
 
     /**
-     * Obtains the value for the specified BitField, appropriately
-     * shifted right.
-     *
-     * <p>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).</p>
+     * Gets the value for the specified BitField, appropriately shifted right.
+     * <p>
+     * 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).
+     * </p>
      *
+     * @param holder the int data containing the bits we're interested in.
+     * @return the selected bits, shifted right appropriately.
      * @see #setValue(int,int)
-     * @param holder the int data containing the bits we're interested
-     *  in
-     * @return the selected bits, shifted right appropriately
      */
     public int getValue(final int holder) {
         return getRawValue(holder) >> shiftCount;
@@ -184,15 +168,12 @@ public int getValue(final int holder) {
 
     /**
      * Tests whether all of the bits are set or not.
+     * <p>
+     * This is a stricter test than {@link #isSet(int)}, in that all of the 
bits in a multi-bit set must be set for this method to return {@code true}.
+     * </p>
      *
-     * <p>This is a stricter test than {@link #isSet(int)},
-     * in that all of the bits in a multi-bit set must be set
-     * for this method to return {@code true}.</p>
-     *
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @return {@code true} if all of the bits are set,
-     *  else {@code false}
+     * @param holder the int data containing the bits we're interested in.
+     * @return {@code true} if all of the bits are set, else {@code false}.
      */
     public boolean isAllSet(final int holder) {
         return (holder & mask) == mask;
@@ -200,16 +181,13 @@ public boolean isAllSet(final int holder) {
 
     /**
      * Tests whether the field is set or not.
+     * <p>
+     * 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.
+     * </p>
      *
-     * <p>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.</p>
-     *
-     * @param holder the int data containing the bits we're interested
-     *  in
-     * @return {@code true} if any of the bits are set,
-     *  else {@code false}
+     * @param holder the int data containing the bits we're interested in
+     * @return {@code true} if any of the bits are set, else {@code false}
      */
     public boolean isSet(final int holder) {
         return (holder & mask) != 0;
@@ -218,10 +196,8 @@ public boolean isSet(final int holder) {
     /**
      * Sets the bits.
      *
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @return the value of holder with the specified bits set
-     *  to {@code 1}
+     * @param holder the int data containing the bits we're interested in.
+     * @return the value of holder with the specified bits set to {@code 1}.
      */
     public int set(final int holder) {
         return holder | mask;
@@ -230,11 +206,9 @@ public int set(final int holder) {
     /**
      * Sets a boolean BitField.
      *
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @param flag indicating whether to set or clear the bits
-     * @return the value of holder with the specified bits set or
-     *         cleared
+     * @param holder the int data containing the bits we're interested in.
+     * @param flag   indicating whether to set or clear the bits.
+     * @return the value of holder with the specified bits set or cleared.
      */
     public int setBoolean(final int holder, final boolean flag) {
         return flag ? set(holder) : clear(holder);
@@ -243,11 +217,8 @@ public int setBoolean(final int holder, final boolean 
flag) {
     /**
      * Sets the bits.
      *
-     * @param holder the byte data containing the bits we're
-     *  interested in
-     *
-     * @return the value of holder with the specified bits set
-     *  to {@code 1}
+     * @param holder the byte data containing the bits we're interested in
+     * @return the value of holder with the specified bits set to {@code 1}
      */
     public byte setByte(final byte holder) {
         return (byte) set(holder);
@@ -256,11 +227,9 @@ public byte setByte(final byte holder) {
     /**
      * Sets a boolean BitField.
      *
-     * @param holder the byte data containing the bits we're
-     *  interested in
-     * @param flag indicating whether to set or clear the bits
-     * @return the value of holder with the specified bits set or
-     *  cleared
+     * @param holder the byte data containing the bits we're interested in.
+     * @param flag   indicating whether to set or clear the bits.
+     * @return the value of holder with the specified bits set or cleared.
      */
     public byte setByteBoolean(final byte holder, final boolean flag) {
         return flag ? setByte(holder) : clearByte(holder);
@@ -269,10 +238,8 @@ public byte setByteBoolean(final byte holder, final 
boolean flag) {
     /**
      * Sets the bits.
      *
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @return the value of holder with the specified bits set
-     *  to {@code 1}
+     * @param holder the short data containing the bits we're interested in.
+     * @return the value of holder with the specified bits set to {@code 1}.
      */
     public short setShort(final short holder) {
         return (short) set(holder);
@@ -281,42 +248,35 @@ public short setShort(final short holder) {
     /**
      * Sets a boolean BitField.
      *
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @param flag indicating whether to set or clear the bits
-     * @return the value of holder with the specified bits set or
-     *  cleared
+     * @param holder the short data containing the bits we're interested in.
+     * @param flag   indicating whether to set or clear the bits.
+     * @return the value of holder with the specified bits set or cleared.
      */
     public short setShortBoolean(final short holder, final boolean flag) {
         return flag ? setShort(holder) : clearShort(holder);
     }
 
     /**
-     * Replaces the bits with new values.
+     * Sets the bits with new values.
      *
+     * @param holder the short data containing the bits we're interested in
+     * @param value  the new value for the specified bits
+     * @return the value of holder with the bits from the value parameter 
replacing the old bits
      * @see #getShortValue(short)
-     * @param holder the short data containing the bits we're
-     *  interested in
-     * @param value the new value for the specified bits
-     * @return the value of holder with the bits from the value
-     *  parameter replacing the old bits
      */
     public short setShortValue(final short holder, final short value) {
         return (short) setValue(holder, value);
     }
 
     /**
-     * Replaces the bits with new values.
+     * Sets the bits with new values.
      *
+     * @param holder the int data containing the bits we're interested in.
+     * @param value  the new value for the specified bits.
+     * @return the value of holder with the bits from the value parameter 
replacing the old bits.
      * @see #getValue(int)
-     * @param holder the int data containing the bits we're
-     *  interested in
-     * @param value the new value for the specified bits
-     * @return the value of holder with the bits from the value
-     *  parameter replacing the old bits
      */
     public int setValue(final int holder, final int value) {
         return holder & ~mask | value << shiftCount & mask;
     }
-
 }

Reply via email to