All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.slime.NixValue Maven / Gradle / Ivy

// 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; }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy