io.substrait.expression.FunctionOption 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.expression;
import java.util.List;
import org.immutables.value.Value;
@Value.Immutable
public abstract class FunctionOption {
public abstract String getName();
public abstract List values();
public static ImmutableFunctionOption.Builder builder() {
return ImmutableFunctionOption.builder();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy