cz.proto.FieldRefOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: table_common.proto
package cz.proto;
public interface FieldRefOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.FieldRef)
com.google.protobuf.MessageOrBuilder {
/**
*
* 1. field_id and field_name are FieldSchema's id and name respectively
* 2. field_name is only used for creating table, when filed_id has not been assigned yet.
* 3. field_id is used for almost all the cases except item 2.
*
*
* uint32 field_id = 1;
* @return Whether the fieldId field is set.
*/
boolean hasFieldId();
/**
*
* 1. field_id and field_name are FieldSchema's id and name respectively
* 2. field_name is only used for creating table, when filed_id has not been assigned yet.
* 3. field_id is used for almost all the cases except item 2.
*
*
* uint32 field_id = 1;
* @return The fieldId.
*/
int getFieldId();
/**
* string field_name = 2;
* @return Whether the fieldName field is set.
*/
boolean hasFieldName();
/**
* string field_name = 2;
* @return The fieldName.
*/
java.lang.String getFieldName();
/**
* string field_name = 2;
* @return The bytes for fieldName.
*/
com.google.protobuf.ByteString
getFieldNameBytes();
public cz.proto.FieldRef.FieldCase getFieldCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy