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

io.substrait.relation.files.FileFormat 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.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