io.substrait.proto.NamedObjectWriteOrBuilder 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
// 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 NamedObjectWriteOrBuilder extends
// @@protoc_insertion_point(interface_extends:substrait.NamedObjectWrite)
com.google.protobuf.MessageOrBuilder {
/**
*
* The list of string is used to represent namespacing (e.g., mydb.mytable).
* This assumes shared catalog between systems exchanging a message.
*
*
* repeated string names = 1;
* @return A list containing the names.
*/
java.util.List
getNamesList();
/**
*
* The list of string is used to represent namespacing (e.g., mydb.mytable).
* This assumes shared catalog between systems exchanging a message.
*
*
* repeated string names = 1;
* @return The count of names.
*/
int getNamesCount();
/**
*
* The list of string is used to represent namespacing (e.g., mydb.mytable).
* This assumes shared catalog between systems exchanging a message.
*
*
* repeated string names = 1;
* @param index The index of the element to return.
* @return The names at the given index.
*/
java.lang.String getNames(int index);
/**
*
* The list of string is used to represent namespacing (e.g., mydb.mytable).
* This assumes shared catalog between systems exchanging a message.
*
*
* repeated string names = 1;
* @param index The index of the value to return.
* @return The bytes of the names at the given index.
*/
com.google.protobuf.ByteString
getNamesBytes(int index);
/**
* .substrait.extensions.AdvancedExtension advanced_extension = 10;
* @return Whether the advancedExtension field is set.
*/
boolean hasAdvancedExtension();
/**
* .substrait.extensions.AdvancedExtension advanced_extension = 10;
* @return The advancedExtension.
*/
io.substrait.proto.AdvancedExtension getAdvancedExtension();
/**
* .substrait.extensions.AdvancedExtension advanced_extension = 10;
*/
io.substrait.proto.AdvancedExtensionOrBuilder getAdvancedExtensionOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy