io.substrait.relation.LocalFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Create a well-defined, cross-language specification for data compute operations
package io.substrait.relation;
import io.substrait.relation.files.FileOrFiles;
import java.util.List;
import org.immutables.value.Value;
@Value.Immutable
public abstract class LocalFiles extends AbstractReadRel {
static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(LocalFiles.class);
public abstract List getItems();
@Override
public O accept(RelVisitor visitor) throws E {
return visitor.visit(this);
}
public static ImmutableLocalFiles.Builder builder() {
return ImmutableLocalFiles.builder();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy