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

io.deephaven.appmode.QSTApplication Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.appmode;

import io.deephaven.annotations.SimpleStyle;
import org.immutables.value.Value.Immutable;

import java.util.Properties;

@Immutable
@SimpleStyle
public abstract class QSTApplication implements ApplicationConfig {

    public static final String TYPE = "qst";

    public static QSTApplication parse(Properties properties) {
        return of();
    }

    public static ImmutableQSTApplication of() {
        return ImmutableQSTApplication.of();
    }

    // TODO core#1080: QST structure undecided
    public boolean isEnabled() {
        return false;
    }

    @Override
    public final  V walk(V visitor) {
        visitor.visit(this);
        return visitor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy