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

io.substrait.relation.HasExtension 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 io.substrait.extension.AdvancedExtension;
import java.util.Optional;

/** Used to indicate the potential presence of an {@link AdvancedExtension} */
public interface HasExtension {
  /**
   * @return the {@link AdvancedExtension} associated directly with the class
   */
  Optional getExtension();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy