aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/slime/NixValue.java
blob: 62b2d866f24c6f3e849bcaf69e239cbe50a3e025 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.slime;

/**
 * @author havardpe
 */
final class NixValue extends Value {

    private static final NixValue invalidNix = new NixValue();
    private static final NixValue validNix = new NixValue();
    private NixValue() {}
    public Type type() { return Type.NIX; }
    public void accept(Visitor v) {
        if (valid()) {
            v.visitNix();
        } else {
            v.visitInvalid();
        }
    }
    public static NixValue invalid() { return invalidNix; }
    public static NixValue instance() { return validNix; }

}