org.tensorflow.metadata.v0.SliceSqlOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/derived_feature.proto
// Protobuf Java Version: 3.25.5
package org.tensorflow.metadata.v0;
public interface SliceSqlOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.SliceSql)
com.google.protobuf.MessageOrBuilder {
/**
*
* Sql expression used to create a derived feature based on the extracted
* slice keys. It must return result of STRUCT type.
*
*
* string expression = 1;
* @return The expression.
*/
java.lang.String getExpression();
/**
*
* Sql expression used to create a derived feature based on the extracted
* slice keys. It must return result of STRUCT type.
*
*
* string expression = 1;
* @return The bytes for expression.
*/
com.google.protobuf.ByteString
getExpressionBytes();
/**
*
* Value type of the derived feature. The default type is string.
*
*
* .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2;
* @return The enum numeric value on the wire for featureValueType.
*/
int getFeatureValueTypeValue();
/**
*
* Value type of the derived feature. The default type is string.
*
*
* .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2;
* @return The featureValueType.
*/
org.tensorflow.metadata.v0.SliceValueTypes getFeatureValueType();
/**
*
* Indicates whether to drop struct name in the generated output.
*
*
* bool drop_struct_name = 3;
* @return The dropStructName.
*/
boolean getDropStructName();
/**
* int64 int64_default_feature_value = 4;
* @return Whether the int64DefaultFeatureValue field is set.
*/
boolean hasInt64DefaultFeatureValue();
/**
* int64 int64_default_feature_value = 4;
* @return The int64DefaultFeatureValue.
*/
long getInt64DefaultFeatureValue();
/**
* float float_default_feature_value = 5;
* @return Whether the floatDefaultFeatureValue field is set.
*/
boolean hasFloatDefaultFeatureValue();
/**
* float float_default_feature_value = 5;
* @return The floatDefaultFeatureValue.
*/
float getFloatDefaultFeatureValue();
/**
* string string_default_feature_value = 6;
* @return Whether the stringDefaultFeatureValue field is set.
*/
boolean hasStringDefaultFeatureValue();
/**
* string string_default_feature_value = 6;
* @return The stringDefaultFeatureValue.
*/
java.lang.String getStringDefaultFeatureValue();
/**
* string string_default_feature_value = 6;
* @return The bytes for stringDefaultFeatureValue.
*/
com.google.protobuf.ByteString
getStringDefaultFeatureValueBytes();
org.tensorflow.metadata.v0.SliceSql.DefaultFeatureValueForFailedSqlCase getDefaultFeatureValueForFailedSqlCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy