aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/lang/MutableLong.java
blob: d0da35a2cb29a6a9c8bdc3b8802b3bab6a47577f (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
29
30
31
32
33
34
35
36
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.lang;

/**
 * A mutable long
 *
 * @author bratseth
 */
public class MutableLong {

    private long value;

    public MutableLong(long value) {
        this.value = value;
    }

    public long get() { return value; }

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

    /** Adds the increment to the current value and returns the resulting value */
    public long add(long increment) {
        value += increment;
        return value;
    }

    /** Adds the increment to the current value and returns the resulting value */
    public long subtract(long increment) {
        value -= increment;
        return value;
    }

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

}