io.substrait.relation.files.FileFormat 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.files;
import org.immutables.value.Value;
@Value.Enclosing
public interface FileFormat {
@Value.Immutable
abstract static class ParquetReadOptions implements FileFormat {}
@Value.Immutable
abstract static class ArrowReadOptions implements FileFormat {}
@Value.Immutable
abstract static class OrcReadOptions implements FileFormat {}
@Value.Immutable
abstract static class DwrfReadOptions implements FileFormat {}
@Value.Immutable
abstract static class Extension implements FileFormat {
public abstract com.google.protobuf.Any getExtension();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy