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

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

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

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

/**
 * 
 * Encodes information for domains of float values.
 * Note that FeatureType could be either INT or BYTES.
 * 
* * Protobuf type {@code tensorflow.metadata.v0.FloatDomain} */ public final class FloatDomain extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.metadata.v0.FloatDomain) FloatDomainOrBuilder { private static final long serialVersionUID = 0L; // Use FloatDomain.newBuilder() to construct. private FloatDomain(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FloatDomain() { name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new FloatDomain(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_FloatDomain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_FloatDomain_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.metadata.v0.FloatDomain.class, org.tensorflow.metadata.v0.FloatDomain.Builder.class); } private int bitField0_; public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** *
   * Id of the domain. Required if the domain is defined at the schema level. If
   * so, then the name must be unique within the schema.
   * 
* * optional string name = 1; * @return Whether the name field is set. */ @java.lang.Override public boolean hasName() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * Id of the domain. Required if the domain is defined at the schema level. If
   * so, then the name must be unique within the schema.
   * 
* * optional string name = 1; * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; 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(); if (bs.isValidUtf8()) { name_ = s; } return s; } } /** *
   * Id of the domain. Required if the domain is defined at the schema level. If
   * so, then the name must be unique within the schema.
   * 
* * optional string name = 1; * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int MIN_FIELD_NUMBER = 3; private float min_ = 0F; /** *
   * Min and max values of the domain.
   * 
* * optional float min = 3; * @return Whether the min field is set. */ @java.lang.Override public boolean hasMin() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * Min and max values of the domain.
   * 
* * optional float min = 3; * @return The min. */ @java.lang.Override public float getMin() { return min_; } public static final int MAX_FIELD_NUMBER = 4; private float max_ = 0F; /** * optional float max = 4; * @return Whether the max field is set. */ @java.lang.Override public boolean hasMax() { return ((bitField0_ & 0x00000004) != 0); } /** * optional float max = 4; * @return The max. */ @java.lang.Override public float getMax() { return max_; } public static final int DISALLOW_NAN_FIELD_NUMBER = 5; private boolean disallowNan_ = false; /** *
   * If true, feature should not contain NaNs.
   * 
* * optional bool disallow_nan = 5; * @return Whether the disallowNan field is set. */ @java.lang.Override public boolean hasDisallowNan() { return ((bitField0_ & 0x00000008) != 0); } /** *
   * If true, feature should not contain NaNs.
   * 
* * optional bool disallow_nan = 5; * @return The disallowNan. */ @java.lang.Override public boolean getDisallowNan() { return disallowNan_; } public static final int DISALLOW_INF_FIELD_NUMBER = 6; private boolean disallowInf_ = false; /** *
   * If true, feature should not contain Inf or -Inf.
   * 
* * optional bool disallow_inf = 6; * @return Whether the disallowInf field is set. */ @java.lang.Override public boolean hasDisallowInf() { return ((bitField0_ & 0x00000010) != 0); } /** *
   * If true, feature should not contain Inf or -Inf.
   * 
* * optional bool disallow_inf = 6; * @return The disallowInf. */ @java.lang.Override public boolean getDisallowInf() { return disallowInf_; } public static final int IS_EMBEDDING_FIELD_NUMBER = 7; private boolean isEmbedding_ = false; /** *
   * If True, this indicates that the feature is semantically an embedding. This
   * can be useful for distinguishing fixed dimensional numeric features that
   * should be fed to a model unmodified.
   * 
* * optional bool is_embedding = 7; * @return Whether the isEmbedding field is set. */ @java.lang.Override public boolean hasIsEmbedding() { return ((bitField0_ & 0x00000020) != 0); } /** *
   * If True, this indicates that the feature is semantically an embedding. This
   * can be useful for distinguishing fixed dimensional numeric features that
   * should be fed to a model unmodified.
   * 
* * optional bool is_embedding = 7; * @return The isEmbedding. */ @java.lang.Override public boolean getIsEmbedding() { return isEmbedding_; } public static final int IS_CATEGORICAL_FIELD_NUMBER = 8; private boolean isCategorical_ = false; /** *
   * If true then the domain encodes categorical values (i.e., ids) rather than
   * continuous values.
   * 
* * optional bool is_categorical = 8; * @return Whether the isCategorical field is set. */ @java.lang.Override public boolean hasIsCategorical() { return ((bitField0_ & 0x00000040) != 0); } /** *
   * If true then the domain encodes categorical values (i.e., ids) rather than
   * continuous values.
   * 
* * optional bool is_categorical = 8; * @return The isCategorical. */ @java.lang.Override public boolean getIsCategorical() { return isCategorical_; } public static final int EMBEDDING_DIM_FIELD_NUMBER = 9; private long embeddingDim_ = 0L; /** *
   * This field specifies the embedding dimension and is only applicable if
   * is_embedding is true. It is useful for use cases such as restoring shapes
   * for flattened sequence of embeddings.
   * 
* * optional int64 embedding_dim = 9; * @return Whether the embeddingDim field is set. */ @java.lang.Override public boolean hasEmbeddingDim() { return ((bitField0_ & 0x00000080) != 0); } /** *
   * This field specifies the embedding dimension and is only applicable if
   * is_embedding is true. It is useful for use cases such as restoring shapes
   * for flattened sequence of embeddings.
   * 
* * optional int64 embedding_dim = 9; * @return The embeddingDim. */ @java.lang.Override public long getEmbeddingDim() { return embeddingDim_; } 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 (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (((bitField0_ & 0x00000002) != 0)) { output.writeFloat(3, min_); } if (((bitField0_ & 0x00000004) != 0)) { output.writeFloat(4, max_); } if (((bitField0_ & 0x00000008) != 0)) { output.writeBool(5, disallowNan_); } if (((bitField0_ & 0x00000010) != 0)) { output.writeBool(6, disallowInf_); } if (((bitField0_ & 0x00000020) != 0)) { output.writeBool(7, isEmbedding_); } if (((bitField0_ & 0x00000040) != 0)) { output.writeBool(8, isCategorical_); } if (((bitField0_ & 0x00000080) != 0)) { output.writeInt64(9, embeddingDim_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(3, min_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(4, max_); } if (((bitField0_ & 0x00000008) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(5, disallowNan_); } if (((bitField0_ & 0x00000010) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(6, disallowInf_); } if (((bitField0_ & 0x00000020) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(7, isEmbedding_); } if (((bitField0_ & 0x00000040) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(8, isCategorical_); } if (((bitField0_ & 0x00000080) != 0)) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(9, embeddingDim_); } 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.FloatDomain)) { return super.equals(obj); } org.tensorflow.metadata.v0.FloatDomain other = (org.tensorflow.metadata.v0.FloatDomain) obj; if (hasName() != other.hasName()) return false; if (hasName()) { if (!getName() .equals(other.getName())) return false; } if (hasMin() != other.hasMin()) return false; if (hasMin()) { if (java.lang.Float.floatToIntBits(getMin()) != java.lang.Float.floatToIntBits( other.getMin())) return false; } if (hasMax() != other.hasMax()) return false; if (hasMax()) { if (java.lang.Float.floatToIntBits(getMax()) != java.lang.Float.floatToIntBits( other.getMax())) return false; } if (hasDisallowNan() != other.hasDisallowNan()) return false; if (hasDisallowNan()) { if (getDisallowNan() != other.getDisallowNan()) return false; } if (hasDisallowInf() != other.hasDisallowInf()) return false; if (hasDisallowInf()) { if (getDisallowInf() != other.getDisallowInf()) return false; } if (hasIsEmbedding() != other.hasIsEmbedding()) return false; if (hasIsEmbedding()) { if (getIsEmbedding() != other.getIsEmbedding()) return false; } if (hasIsCategorical() != other.hasIsCategorical()) return false; if (hasIsCategorical()) { if (getIsCategorical() != other.getIsCategorical()) return false; } if (hasEmbeddingDim() != other.hasEmbeddingDim()) return false; if (hasEmbeddingDim()) { if (getEmbeddingDim() != other.getEmbeddingDim()) 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(); if (hasName()) { hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); } if (hasMin()) { hash = (37 * hash) + MIN_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getMin()); } if (hasMax()) { hash = (37 * hash) + MAX_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getMax()); } if (hasDisallowNan()) { hash = (37 * hash) + DISALLOW_NAN_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDisallowNan()); } if (hasDisallowInf()) { hash = (37 * hash) + DISALLOW_INF_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDisallowInf()); } if (hasIsEmbedding()) { hash = (37 * hash) + IS_EMBEDDING_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsEmbedding()); } if (hasIsCategorical()) { hash = (37 * hash) + IS_CATEGORICAL_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsCategorical()); } if (hasEmbeddingDim()) { hash = (37 * hash) + EMBEDDING_DIM_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getEmbeddingDim()); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.metadata.v0.FloatDomain parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.FloatDomain 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.FloatDomain parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.FloatDomain 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.FloatDomain parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.metadata.v0.FloatDomain parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.metadata.v0.FloatDomain parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.FloatDomain 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.FloatDomain parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.FloatDomain 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.FloatDomain parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.metadata.v0.FloatDomain 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.FloatDomain 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; } /** *
   * Encodes information for domains of float values.
   * Note that FeatureType could be either INT or BYTES.
   * 
* * Protobuf type {@code tensorflow.metadata.v0.FloatDomain} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.metadata.v0.FloatDomain) org.tensorflow.metadata.v0.FloatDomainOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_FloatDomain_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_FloatDomain_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.metadata.v0.FloatDomain.class, org.tensorflow.metadata.v0.FloatDomain.Builder.class); } // Construct using org.tensorflow.metadata.v0.FloatDomain.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = ""; min_ = 0F; max_ = 0F; disallowNan_ = false; disallowInf_ = false; isEmbedding_ = false; isCategorical_ = false; embeddingDim_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_FloatDomain_descriptor; } @java.lang.Override public org.tensorflow.metadata.v0.FloatDomain getDefaultInstanceForType() { return org.tensorflow.metadata.v0.FloatDomain.getDefaultInstance(); } @java.lang.Override public org.tensorflow.metadata.v0.FloatDomain build() { org.tensorflow.metadata.v0.FloatDomain result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.metadata.v0.FloatDomain buildPartial() { org.tensorflow.metadata.v0.FloatDomain result = new org.tensorflow.metadata.v0.FloatDomain(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.tensorflow.metadata.v0.FloatDomain result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.min_ = min_; to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000004) != 0)) { result.max_ = max_; to_bitField0_ |= 0x00000004; } if (((from_bitField0_ & 0x00000008) != 0)) { result.disallowNan_ = disallowNan_; to_bitField0_ |= 0x00000008; } if (((from_bitField0_ & 0x00000010) != 0)) { result.disallowInf_ = disallowInf_; to_bitField0_ |= 0x00000010; } if (((from_bitField0_ & 0x00000020) != 0)) { result.isEmbedding_ = isEmbedding_; to_bitField0_ |= 0x00000020; } if (((from_bitField0_ & 0x00000040) != 0)) { result.isCategorical_ = isCategorical_; to_bitField0_ |= 0x00000040; } if (((from_bitField0_ & 0x00000080) != 0)) { result.embeddingDim_ = embeddingDim_; to_bitField0_ |= 0x00000080; } result.bitField0_ |= to_bitField0_; } @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.FloatDomain) { return mergeFrom((org.tensorflow.metadata.v0.FloatDomain)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.metadata.v0.FloatDomain other) { if (other == org.tensorflow.metadata.v0.FloatDomain.getDefaultInstance()) return this; if (other.hasName()) { name_ = other.name_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasMin()) { setMin(other.getMin()); } if (other.hasMax()) { setMax(other.getMax()); } if (other.hasDisallowNan()) { setDisallowNan(other.getDisallowNan()); } if (other.hasDisallowInf()) { setDisallowInf(other.getDisallowInf()); } if (other.hasIsEmbedding()) { setIsEmbedding(other.getIsEmbedding()); } if (other.hasIsCategorical()) { setIsCategorical(other.getIsCategorical()); } if (other.hasEmbeddingDim()) { setEmbeddingDim(other.getEmbeddingDim()); } 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: { name_ = input.readBytes(); bitField0_ |= 0x00000001; break; } // case 10 case 29: { min_ = input.readFloat(); bitField0_ |= 0x00000002; break; } // case 29 case 37: { max_ = input.readFloat(); bitField0_ |= 0x00000004; break; } // case 37 case 40: { disallowNan_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 40 case 48: { disallowInf_ = input.readBool(); bitField0_ |= 0x00000010; break; } // case 48 case 56: { isEmbedding_ = input.readBool(); bitField0_ |= 0x00000020; break; } // case 56 case 64: { isCategorical_ = input.readBool(); bitField0_ |= 0x00000040; break; } // case 64 case 72: { embeddingDim_ = input.readInt64(); bitField0_ |= 0x00000080; break; } // case 72 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 name_ = ""; /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @return Whether the name field is set. */ public boolean hasName() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { name_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @param value The name to set. * @return This builder for chaining. */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * Id of the domain. Required if the domain is defined at the schema level. If
     * so, then the name must be unique within the schema.
     * 
* * optional string name = 1; * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private float min_ ; /** *
     * Min and max values of the domain.
     * 
* * optional float min = 3; * @return Whether the min field is set. */ @java.lang.Override public boolean hasMin() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * Min and max values of the domain.
     * 
* * optional float min = 3; * @return The min. */ @java.lang.Override public float getMin() { return min_; } /** *
     * Min and max values of the domain.
     * 
* * optional float min = 3; * @param value The min to set. * @return This builder for chaining. */ public Builder setMin(float value) { min_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Min and max values of the domain.
     * 
* * optional float min = 3; * @return This builder for chaining. */ public Builder clearMin() { bitField0_ = (bitField0_ & ~0x00000002); min_ = 0F; onChanged(); return this; } private float max_ ; /** * optional float max = 4; * @return Whether the max field is set. */ @java.lang.Override public boolean hasMax() { return ((bitField0_ & 0x00000004) != 0); } /** * optional float max = 4; * @return The max. */ @java.lang.Override public float getMax() { return max_; } /** * optional float max = 4; * @param value The max to set. * @return This builder for chaining. */ public Builder setMax(float value) { max_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * optional float max = 4; * @return This builder for chaining. */ public Builder clearMax() { bitField0_ = (bitField0_ & ~0x00000004); max_ = 0F; onChanged(); return this; } private boolean disallowNan_ ; /** *
     * If true, feature should not contain NaNs.
     * 
* * optional bool disallow_nan = 5; * @return Whether the disallowNan field is set. */ @java.lang.Override public boolean hasDisallowNan() { return ((bitField0_ & 0x00000008) != 0); } /** *
     * If true, feature should not contain NaNs.
     * 
* * optional bool disallow_nan = 5; * @return The disallowNan. */ @java.lang.Override public boolean getDisallowNan() { return disallowNan_; } /** *
     * If true, feature should not contain NaNs.
     * 
* * optional bool disallow_nan = 5; * @param value The disallowNan to set. * @return This builder for chaining. */ public Builder setDisallowNan(boolean value) { disallowNan_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * If true, feature should not contain NaNs.
     * 
* * optional bool disallow_nan = 5; * @return This builder for chaining. */ public Builder clearDisallowNan() { bitField0_ = (bitField0_ & ~0x00000008); disallowNan_ = false; onChanged(); return this; } private boolean disallowInf_ ; /** *
     * If true, feature should not contain Inf or -Inf.
     * 
* * optional bool disallow_inf = 6; * @return Whether the disallowInf field is set. */ @java.lang.Override public boolean hasDisallowInf() { return ((bitField0_ & 0x00000010) != 0); } /** *
     * If true, feature should not contain Inf or -Inf.
     * 
* * optional bool disallow_inf = 6; * @return The disallowInf. */ @java.lang.Override public boolean getDisallowInf() { return disallowInf_; } /** *
     * If true, feature should not contain Inf or -Inf.
     * 
* * optional bool disallow_inf = 6; * @param value The disallowInf to set. * @return This builder for chaining. */ public Builder setDisallowInf(boolean value) { disallowInf_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * If true, feature should not contain Inf or -Inf.
     * 
* * optional bool disallow_inf = 6; * @return This builder for chaining. */ public Builder clearDisallowInf() { bitField0_ = (bitField0_ & ~0x00000010); disallowInf_ = false; onChanged(); return this; } private boolean isEmbedding_ ; /** *
     * If True, this indicates that the feature is semantically an embedding. This
     * can be useful for distinguishing fixed dimensional numeric features that
     * should be fed to a model unmodified.
     * 
* * optional bool is_embedding = 7; * @return Whether the isEmbedding field is set. */ @java.lang.Override public boolean hasIsEmbedding() { return ((bitField0_ & 0x00000020) != 0); } /** *
     * If True, this indicates that the feature is semantically an embedding. This
     * can be useful for distinguishing fixed dimensional numeric features that
     * should be fed to a model unmodified.
     * 
* * optional bool is_embedding = 7; * @return The isEmbedding. */ @java.lang.Override public boolean getIsEmbedding() { return isEmbedding_; } /** *
     * If True, this indicates that the feature is semantically an embedding. This
     * can be useful for distinguishing fixed dimensional numeric features that
     * should be fed to a model unmodified.
     * 
* * optional bool is_embedding = 7; * @param value The isEmbedding to set. * @return This builder for chaining. */ public Builder setIsEmbedding(boolean value) { isEmbedding_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** *
     * If True, this indicates that the feature is semantically an embedding. This
     * can be useful for distinguishing fixed dimensional numeric features that
     * should be fed to a model unmodified.
     * 
* * optional bool is_embedding = 7; * @return This builder for chaining. */ public Builder clearIsEmbedding() { bitField0_ = (bitField0_ & ~0x00000020); isEmbedding_ = false; onChanged(); return this; } private boolean isCategorical_ ; /** *
     * If true then the domain encodes categorical values (i.e., ids) rather than
     * continuous values.
     * 
* * optional bool is_categorical = 8; * @return Whether the isCategorical field is set. */ @java.lang.Override public boolean hasIsCategorical() { return ((bitField0_ & 0x00000040) != 0); } /** *
     * If true then the domain encodes categorical values (i.e., ids) rather than
     * continuous values.
     * 
* * optional bool is_categorical = 8; * @return The isCategorical. */ @java.lang.Override public boolean getIsCategorical() { return isCategorical_; } /** *
     * If true then the domain encodes categorical values (i.e., ids) rather than
     * continuous values.
     * 
* * optional bool is_categorical = 8; * @param value The isCategorical to set. * @return This builder for chaining. */ public Builder setIsCategorical(boolean value) { isCategorical_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } /** *
     * If true then the domain encodes categorical values (i.e., ids) rather than
     * continuous values.
     * 
* * optional bool is_categorical = 8; * @return This builder for chaining. */ public Builder clearIsCategorical() { bitField0_ = (bitField0_ & ~0x00000040); isCategorical_ = false; onChanged(); return this; } private long embeddingDim_ ; /** *
     * This field specifies the embedding dimension and is only applicable if
     * is_embedding is true. It is useful for use cases such as restoring shapes
     * for flattened sequence of embeddings.
     * 
* * optional int64 embedding_dim = 9; * @return Whether the embeddingDim field is set. */ @java.lang.Override public boolean hasEmbeddingDim() { return ((bitField0_ & 0x00000080) != 0); } /** *
     * This field specifies the embedding dimension and is only applicable if
     * is_embedding is true. It is useful for use cases such as restoring shapes
     * for flattened sequence of embeddings.
     * 
* * optional int64 embedding_dim = 9; * @return The embeddingDim. */ @java.lang.Override public long getEmbeddingDim() { return embeddingDim_; } /** *
     * This field specifies the embedding dimension and is only applicable if
     * is_embedding is true. It is useful for use cases such as restoring shapes
     * for flattened sequence of embeddings.
     * 
* * optional int64 embedding_dim = 9; * @param value The embeddingDim to set. * @return This builder for chaining. */ public Builder setEmbeddingDim(long value) { embeddingDim_ = value; bitField0_ |= 0x00000080; onChanged(); return this; } /** *
     * This field specifies the embedding dimension and is only applicable if
     * is_embedding is true. It is useful for use cases such as restoring shapes
     * for flattened sequence of embeddings.
     * 
* * optional int64 embedding_dim = 9; * @return This builder for chaining. */ public Builder clearEmbeddingDim() { bitField0_ = (bitField0_ & ~0x00000080); embeddingDim_ = 0L; 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.FloatDomain) } // @@protoc_insertion_point(class_scope:tensorflow.metadata.v0.FloatDomain) private static final org.tensorflow.metadata.v0.FloatDomain DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.metadata.v0.FloatDomain(); } public static org.tensorflow.metadata.v0.FloatDomain getDefaultInstance() { return DEFAULT_INSTANCE; } @java.lang.Deprecated public static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public FloatDomain 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.FloatDomain getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy