Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.lib / src / main / java / org / gvsig / tools / util / impl / BitmaskImpl.java @ 2236

History | View | Annotate | Download (2.14 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2020 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.tools.util.impl;
25

    
26
import org.gvsig.tools.util.Bitmask;
27

    
28
/**
29
 *
30
 * @author gvSIG Team
31
 */
32
public class BitmaskImpl implements Bitmask {
33

    
34
    protected int mask;
35

    
36
    public BitmaskImpl(int mask) {
37
        this.mask = mask;
38
    }
39

    
40
    @Override
41
    public int get() {
42
        return this.mask;
43
    }
44

    
45
    @Override
46
    public boolean isSetBits(int mask) {
47
        return (this.mask & mask) == mask;
48
    }
49

    
50
    @Override
51
    public boolean isSetBit(int bit) {
52
        return (this.mask & (1 << bit)) != 0;
53
    }
54

    
55
    @Override
56
    public boolean isSetAny() {
57
        return this.mask != 0;
58
    }
59

    
60
    @Override
61
    public boolean isEmpty() {
62
        return this.mask == 0;
63
    }
64

    
65
    @Override
66
    public void set(int mask) {
67
        this.mask = mask;
68
    }
69

    
70
    @Override
71
    public void setBits(int mask) {
72
        this.mask = this.mask | mask;
73
    }
74

    
75
    @Override
76
    public void setBit(int bit) {
77
        this.mask = this.mask | (1 << bit);
78
    }
79

    
80
    @Override
81
    public void clear() {
82
        this.mask = 0;
83
    }
84
    @Override
85
    public void clearBits(int mask) {
86
        this.mask = ~mask & this.mask;
87
    }
88

    
89
    @Override
90
    public void clearBit(int bit) {
91
        mask = ~(1 << bit) & this.mask;
92
    }
93

    
94
}