aboutsummaryrefslogtreecommitdiffstats
path: root/flags/src/main/java/com/yahoo/vespa/flags/BooleanFlag.java
blob: 7dc1c66fd11387ae62517cd4432a1a487f8c556e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags;

/**
 * @author hakonhall
 */
public class BooleanFlag extends FlagImpl<Boolean, BooleanFlag> {
    public BooleanFlag(FlagId id, boolean defaultValue, FetchVector vector, FlagSerializer<Boolean> serializer, FlagSource source) {
        super(id, defaultValue, vector, serializer, source, BooleanFlag::new);
    }

    @Override
    public BooleanFlag self() {
        return this;
    }

    public boolean value() {
        return boxedValue();
    }
}