Operations on bit-mapped fields. : BitSet « Collections Data Structure « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Collections Data Structure » BitSetScreenshots 
Operations on bit-mapped fields.
   
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 
 *      http://www.apache.org/licenses/LICENSE-2.0
 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * <p>Operations on bit-mapped fields.</p>
 *
 @author Apache Jakarta POI
 @author Scott Sanders (sanders at apache dot org)
 @author Marc Johnson (mjohnson at apache dot org)
 @author Andrew C. Oliver (acoliver at apache dot org)
 @author Stephen Colebourne
 @author Pete Gieser
 @author Gary Gregory
 @since 2.0
 @version $Id: BitField.java 437554 2006-08-28 06:21:41Z bayard $
 */
public class BitField {
    
    private final int _mask;
    private final int _shift_count;

    /**
     * <p>Creates a BitField instance.</p>
     *
     @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(int mask) {
        _mask = mask;
        int count = 0;
        int bit_pattern = mask;

        if (bit_pattern != 0) {
            while ((bit_pattern & 1== 0) {
                count++;
                bit_pattern >>= 1;
            }
        }
        _shift_count = count;
    }

    /**
     * <p>Obtains the value for the specified BitField, appropriately
     * shifted right.</p>
     *
     * <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>
     *
     @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(int holder) {
        return getRawValue(holder>> _shift_count;
    }

    /**
     * <p>Obtains the value for the specified BitField, appropriately
     * shifted right, as a short.</p>
     *
     * <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>
     *
     @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(short holder) {
        return (shortgetValue(holder);
    }

    /**
     * <p>Obtains the value for the specified BitField, unshifted.</p>
     *
     @param holder the int data containing the bits we're
     *  interested in
     @return the selected bits
     */
    public int getRawValue(int holder) {
        return holder & _mask;
    }

    /**
     * <p>Obtains the value for the specified BitField, unshifted.</p>
     *
     @param holder the short data containing the bits we're
     *  interested in
     @return the selected bits
     */
    public short getShortRawValue(short holder) {
        return (shortgetRawValue(holder);
    }

    /**
     * <p>Returns whether the field is set or not.</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</code> if any of the bits are set,
     *  else <code>false</code>
     */
    public boolean isSet(int holder) {
        return (holder & _mask!= 0;
    }

    /**
     * <p>Returns whether all of the bits are set or not.</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</code>.</p>
     *
     @param holder the int data containing the bits we're
     *  interested in
     @return <code>true</code> if all of the bits are set,
     *  else <code>false</code>
     */
    public boolean isAllSet(int holder) {
        return (holder & _mask== _mask;
    }

    /**
     * <p>Replaces the bits with new values.</p>
     *
     @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(int holder, int value) {
        return (holder & ~_mask((value << _shift_count& _mask);
    }

    /**
     * <p>Replaces the bits with new values.</p>
     *
     @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(short holder, short value) {
        return (shortsetValue(holder, value);
    }

    /**
     * <p>Clears the bits.</p>
     *
     @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</code>)
     */
    public int clear(int holder) {
        return holder & ~_mask;
    }

    /**
     * <p>Clears the bits.</p>
     *
     @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</code>)
     */
    public short clearShort(short holder) {
        return (shortclear(holder);
    }

    /**
     * <p>Clears the bits.</p>
     *
     @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</code>)
     */
    public byte clearByte(byte holder) {
        return (byteclear(holder);
    }

    /**
     * <p>Sets the bits.</p>
     *
     @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</code>
     */
    public int set(int holder) {
        return holder | _mask;
    }

    /**
     * <p>Sets the bits.</p>
     *
     @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</code>
     */
    public short setShort(short holder) {
        return (shortset(holder);
    }

    /**
     * <p>Sets the bits.</p>
     *
     @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</code>
     */
    public byte setByte(byte holder) {
        return (byteset(holder);
    }

    /**
     * <p>Sets a boolean BitField.</p>
     *
     @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(int holder, boolean flag) {
        return flag ? set(holder: clear(holder);
    }

    /**
     * <p>Sets a boolean BitField.</p>
     *
     @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(short holder, boolean flag) {
        return flag ? setShort(holder: clearShort(holder);
    }

    /**
     * <p>Sets a boolean BitField.</p>
     *
     @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(byte holder, boolean flag) {
        return flag ? setByte(holder: clearByte(holder);
    }

}

   
    
    
  
Related examples in the same category
1. Java 1.5 (5.0) Changes to the API: several of the new bit manipulation methods in Integer.Java 1.5 (5.0) Changes to the API: several of the new bit manipulation methods in Integer.
2. The use of BitSetThe use of BitSet
3. Manipulating the BitSetManipulating the BitSet
4. Another Bitset demo
5. Operations on series of numbers
6. BitOHoney
7. BitOps
8. Convert bitset to int array and string
9. Implementation of a bit map of any size, together with static methods to manipulate int, byte and byte[] values as bit maps
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.