summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/lang/MutableBoolean.java
blob: 17501b17bd0f8dd5af8728a868684f2bc05dfcbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.lang;

/**
 * A mutable boolean
 *
 * @author bratseth
 */
public class MutableBoolean {

    private boolean value;

    public MutableBoolean(boolean value) {
        this.value = value;
    }

    public boolean get() { return value; }

    public void set(boolean value) { this.value = value; }

    public void andSet(boolean value) { this.value &= value; }

    public void orSet(boolean value) { this.value |= value; }

    @Override
    public String toString() { return Boolean.toString(value); }

}