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

io.substrait.proto.FunctionOptionOrBuilder 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
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: substrait/algebra.proto

// Protobuf Java Version: 3.25.5
package io.substrait.proto;

public interface FunctionOptionOrBuilder extends
    // @@protoc_insertion_point(interface_extends:substrait.FunctionOption)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * Name of the option to set. If the consumer does not recognize the
   * option, it must reject the plan. The name is matched case-insensitively
   * with option names defined for the function.
   * 
* * string name = 1; * @return The name. */ java.lang.String getName(); /** *
   * Name of the option to set. If the consumer does not recognize the
   * option, it must reject the plan. The name is matched case-insensitively
   * with option names defined for the function.
   * 
* * string name = 1; * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** *
   * List of behavior options allowed by the producer. At least one must be
   * specified; to leave an option unspecified, simply don't add an entry to
   * `options`. The consumer must use the first option from the list that it
   * supports. If the consumer supports none of the specified options, it
   * must reject the plan. The name is matched case-insensitively and must
   * match one of the option values defined for the option.
   * 
* * repeated string preference = 2; * @return A list containing the preference. */ java.util.List getPreferenceList(); /** *
   * List of behavior options allowed by the producer. At least one must be
   * specified; to leave an option unspecified, simply don't add an entry to
   * `options`. The consumer must use the first option from the list that it
   * supports. If the consumer supports none of the specified options, it
   * must reject the plan. The name is matched case-insensitively and must
   * match one of the option values defined for the option.
   * 
* * repeated string preference = 2; * @return The count of preference. */ int getPreferenceCount(); /** *
   * List of behavior options allowed by the producer. At least one must be
   * specified; to leave an option unspecified, simply don't add an entry to
   * `options`. The consumer must use the first option from the list that it
   * supports. If the consumer supports none of the specified options, it
   * must reject the plan. The name is matched case-insensitively and must
   * match one of the option values defined for the option.
   * 
* * repeated string preference = 2; * @param index The index of the element to return. * @return The preference at the given index. */ java.lang.String getPreference(int index); /** *
   * List of behavior options allowed by the producer. At least one must be
   * specified; to leave an option unspecified, simply don't add an entry to
   * `options`. The consumer must use the first option from the list that it
   * supports. If the consumer supports none of the specified options, it
   * must reject the plan. The name is matched case-insensitively and must
   * match one of the option values defined for the option.
   * 
* * repeated string preference = 2; * @param index The index of the value to return. * @return The bytes of the preference at the given index. */ com.google.protobuf.ByteString getPreferenceBytes(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy