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

io.deephaven.api.SelectableImpl Maven / Gradle / Ivy

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.api;

import io.deephaven.annotations.SimpleStyle;
import io.deephaven.api.expression.Expression;
import org.immutables.value.Value.Check;
import org.immutables.value.Value.Immutable;
import org.immutables.value.Value.Parameter;

@Immutable
@SimpleStyle
abstract class SelectableImpl implements Selectable {

    public static SelectableImpl of(ColumnName newColumn, Expression expression) {
        return ImmutableSelectableImpl.of(newColumn, expression);
    }

    @Parameter
    public abstract ColumnName newColumn();

    @Parameter
    public abstract Expression expression();

    @Check
    final void checkExpressionNotSameColumn() {
        if (expression().equals(newColumn())) {
            // To make sure that Selectable#equals() works as we would expect, we should always use
            // canonical ColumnName when applicable.
            throw new IllegalArgumentException(
                    "Should not construct SelectableImpl with expression() equal to newColumn(), use the ColumnName directly");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy