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

io.substrait.relation.NamedScan Maven / Gradle / Ivy

Go to download

Create a well-defined, cross-language specification for data compute operations

There is a newer version: 0.46.1
Show newest version
package io.substrait.relation;

import java.util.List;
import org.immutables.value.Value;

@Value.Immutable
public abstract class NamedScan extends AbstractReadRel {

  public abstract List getNames();

  @Override
  public  O accept(RelVisitor visitor) throws E {
    return visitor.visit(this);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy