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

org.tensorflow.metadata.v0.SliceSql Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/derived_feature.proto

// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;

/**
 * Protobuf type {@code tensorflow.metadata.v0.SliceSql}
 */
public final class SliceSql extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:tensorflow.metadata.v0.SliceSql)
    SliceSqlOrBuilder {
private static final long serialVersionUID = 0L;
  // Use SliceSql.newBuilder() to construct.
  private SliceSql(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private SliceSql() {
    expression_ = "";
    featureValueType_ = 0;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new SliceSql();
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.tensorflow.metadata.v0.DerivedFeature.internal_static_tensorflow_metadata_v0_SliceSql_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.tensorflow.metadata.v0.DerivedFeature.internal_static_tensorflow_metadata_v0_SliceSql_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.tensorflow.metadata.v0.SliceSql.class, org.tensorflow.metadata.v0.SliceSql.Builder.class);
  }

  public static final int EXPRESSION_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private volatile java.lang.Object expression_ = "";
  /**
   * 
   * 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.Override public java.lang.String getExpression() { java.lang.Object ref = expression_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); expression_ = s; return s; } } /** *
   * 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. */ @java.lang.Override public com.google.protobuf.ByteString getExpressionBytes() { java.lang.Object ref = expression_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); expression_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int FEATURE_VALUE_TYPE_FIELD_NUMBER = 2; private int featureValueType_ = 0; /** *
   * 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. */ @java.lang.Override public int getFeatureValueTypeValue() { return featureValueType_; } /** *
   * Value type of the derived feature. The default type is string.
   * 
* * .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2; * @return The featureValueType. */ @java.lang.Override public org.tensorflow.metadata.v0.SliceValueTypes getFeatureValueType() { org.tensorflow.metadata.v0.SliceValueTypes result = org.tensorflow.metadata.v0.SliceValueTypes.forNumber(featureValueType_); return result == null ? org.tensorflow.metadata.v0.SliceValueTypes.UNRECOGNIZED : result; } public static final int DROP_STRUCT_NAME_FIELD_NUMBER = 3; private boolean dropStructName_ = false; /** *
   * Indicates whether to drop struct name in the generated output.
   * 
* * bool drop_struct_name = 3; * @return The dropStructName. */ @java.lang.Override public boolean getDropStructName() { return dropStructName_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(expression_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, expression_); } if (featureValueType_ != org.tensorflow.metadata.v0.SliceValueTypes.VALUE_TYPE_DEFAULT.getNumber()) { output.writeEnum(2, featureValueType_); } if (dropStructName_ != false) { output.writeBool(3, dropStructName_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(expression_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, expression_); } if (featureValueType_ != org.tensorflow.metadata.v0.SliceValueTypes.VALUE_TYPE_DEFAULT.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, featureValueType_); } if (dropStructName_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(3, dropStructName_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.tensorflow.metadata.v0.SliceSql)) { return super.equals(obj); } org.tensorflow.metadata.v0.SliceSql other = (org.tensorflow.metadata.v0.SliceSql) obj; if (!getExpression() .equals(other.getExpression())) return false; if (featureValueType_ != other.featureValueType_) return false; if (getDropStructName() != other.getDropStructName()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + EXPRESSION_FIELD_NUMBER; hash = (53 * hash) + getExpression().hashCode(); hash = (37 * hash) + FEATURE_VALUE_TYPE_FIELD_NUMBER; hash = (53 * hash) + featureValueType_; hash = (37 * hash) + DROP_STRUCT_NAME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDropStructName()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.metadata.v0.SliceSql parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.metadata.v0.SliceSql parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.metadata.v0.SliceSql parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.metadata.v0.SliceSql parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.SliceSql parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.SliceSql parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.tensorflow.metadata.v0.SliceSql prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code tensorflow.metadata.v0.SliceSql} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.metadata.v0.SliceSql) org.tensorflow.metadata.v0.SliceSqlOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.metadata.v0.DerivedFeature.internal_static_tensorflow_metadata_v0_SliceSql_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.metadata.v0.DerivedFeature.internal_static_tensorflow_metadata_v0_SliceSql_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.metadata.v0.SliceSql.class, org.tensorflow.metadata.v0.SliceSql.Builder.class); } // Construct using org.tensorflow.metadata.v0.SliceSql.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; expression_ = ""; featureValueType_ = 0; dropStructName_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.metadata.v0.DerivedFeature.internal_static_tensorflow_metadata_v0_SliceSql_descriptor; } @java.lang.Override public org.tensorflow.metadata.v0.SliceSql getDefaultInstanceForType() { return org.tensorflow.metadata.v0.SliceSql.getDefaultInstance(); } @java.lang.Override public org.tensorflow.metadata.v0.SliceSql build() { org.tensorflow.metadata.v0.SliceSql result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.metadata.v0.SliceSql buildPartial() { org.tensorflow.metadata.v0.SliceSql result = new org.tensorflow.metadata.v0.SliceSql(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.tensorflow.metadata.v0.SliceSql result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.expression_ = expression_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.featureValueType_ = featureValueType_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.dropStructName_ = dropStructName_; } } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.tensorflow.metadata.v0.SliceSql) { return mergeFrom((org.tensorflow.metadata.v0.SliceSql)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.metadata.v0.SliceSql other) { if (other == org.tensorflow.metadata.v0.SliceSql.getDefaultInstance()) return this; if (!other.getExpression().isEmpty()) { expression_ = other.expression_; bitField0_ |= 0x00000001; onChanged(); } if (other.featureValueType_ != 0) { setFeatureValueTypeValue(other.getFeatureValueTypeValue()); } if (other.getDropStructName() != false) { setDropStructName(other.getDropStructName()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { expression_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 16: { featureValueType_ = input.readEnum(); bitField0_ |= 0x00000002; break; } // case 16 case 24: { dropStructName_ = input.readBool(); bitField0_ |= 0x00000004; break; } // case 24 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object expression_ = ""; /** *
     * 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. */ public java.lang.String getExpression() { java.lang.Object ref = expression_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); expression_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * 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. */ public com.google.protobuf.ByteString getExpressionBytes() { java.lang.Object ref = expression_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); expression_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Sql expression used to create a derived feature based on the extracted
     * slice keys. It must return result of STRUCT type.
     * 
* * string expression = 1; * @param value The expression to set. * @return This builder for chaining. */ public Builder setExpression( java.lang.String value) { if (value == null) { throw new NullPointerException(); } expression_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * 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 This builder for chaining. */ public Builder clearExpression() { expression_ = getDefaultInstance().getExpression(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * Sql expression used to create a derived feature based on the extracted
     * slice keys. It must return result of STRUCT type.
     * 
* * string expression = 1; * @param value The bytes for expression to set. * @return This builder for chaining. */ public Builder setExpressionBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); expression_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private int featureValueType_ = 0; /** *
     * 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. */ @java.lang.Override public int getFeatureValueTypeValue() { return featureValueType_; } /** *
     * Value type of the derived feature. The default type is string.
     * 
* * .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2; * @param value The enum numeric value on the wire for featureValueType to set. * @return This builder for chaining. */ public Builder setFeatureValueTypeValue(int value) { featureValueType_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Value type of the derived feature. The default type is string.
     * 
* * .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2; * @return The featureValueType. */ @java.lang.Override public org.tensorflow.metadata.v0.SliceValueTypes getFeatureValueType() { org.tensorflow.metadata.v0.SliceValueTypes result = org.tensorflow.metadata.v0.SliceValueTypes.forNumber(featureValueType_); return result == null ? org.tensorflow.metadata.v0.SliceValueTypes.UNRECOGNIZED : result; } /** *
     * Value type of the derived feature. The default type is string.
     * 
* * .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2; * @param value The featureValueType to set. * @return This builder for chaining. */ public Builder setFeatureValueType(org.tensorflow.metadata.v0.SliceValueTypes value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; featureValueType_ = value.getNumber(); onChanged(); return this; } /** *
     * Value type of the derived feature. The default type is string.
     * 
* * .tensorflow.metadata.v0.SliceValueTypes feature_value_type = 2; * @return This builder for chaining. */ public Builder clearFeatureValueType() { bitField0_ = (bitField0_ & ~0x00000002); featureValueType_ = 0; onChanged(); return this; } private boolean dropStructName_ ; /** *
     * Indicates whether to drop struct name in the generated output.
     * 
* * bool drop_struct_name = 3; * @return The dropStructName. */ @java.lang.Override public boolean getDropStructName() { return dropStructName_; } /** *
     * Indicates whether to drop struct name in the generated output.
     * 
* * bool drop_struct_name = 3; * @param value The dropStructName to set. * @return This builder for chaining. */ public Builder setDropStructName(boolean value) { dropStructName_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * Indicates whether to drop struct name in the generated output.
     * 
* * bool drop_struct_name = 3; * @return This builder for chaining. */ public Builder clearDropStructName() { bitField0_ = (bitField0_ & ~0x00000004); dropStructName_ = false; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:tensorflow.metadata.v0.SliceSql) } // @@protoc_insertion_point(class_scope:tensorflow.metadata.v0.SliceSql) private static final org.tensorflow.metadata.v0.SliceSql DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.metadata.v0.SliceSql(); } public static org.tensorflow.metadata.v0.SliceSql getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public SliceSql parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.tensorflow.metadata.v0.SliceSql getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy