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

io.deephaven.qst.table.JoinTable Maven / Gradle / Ivy

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

import io.deephaven.annotations.NodeStyle;
import io.deephaven.api.TableOperations;
import org.immutables.value.Value.Default;
import org.immutables.value.Value.Immutable;

import java.util.Collection;
import java.util.OptionalInt;

/**
 * @see TableOperations#join(Object, Collection, Collection)
 * @see TableOperations#join(Object, Collection, Collection, int)
 */
@Immutable
@NodeStyle
public abstract class JoinTable extends JoinBase {

    public static Builder builder() {
        return ImmutableJoinTable.builder();
    }

    public abstract OptionalInt reserveBits();

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

    public interface Builder extends Join.Builder {

        Builder reserveBits(int reserveBits);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy