io.deephaven.qst.TableCreationLabeledLogic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-qst Show documentation
Show all versions of deephaven-qst Show documentation
The Deephaven Query Syntax Tree POJOs
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.qst;
import io.deephaven.api.TableOperations;
/**
* An encapsulation of the logic to return a labeled tables, when the table type is also {@link TableOperations}.
*/
@FunctionalInterface
public interface TableCreationLabeledLogic {
> LabeledValues create(TableCreator creation);
}