org.tensorflow.metadata.v0.StringDomain 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 string values.
*
*
* Protobuf type {@code tensorflow.metadata.v0.StringDomain}
*/
public final class StringDomain extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tensorflow.metadata.v0.StringDomain)
StringDomainOrBuilder {
private static final long serialVersionUID = 0L;
// Use StringDomain.newBuilder() to construct.
private StringDomain(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StringDomain() {
name_ = "";
value_ =
com.google.protobuf.LazyStringArrayList.emptyList();
isCategorical_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new StringDomain();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_StringDomain_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_StringDomain_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.metadata.v0.StringDomain.class, org.tensorflow.metadata.v0.StringDomain.Builder.class);
}
/**
*
* Currently unused
* StringDomain consists of Categorical. This enum allows the user to
* specify the whether to treat the feature as categorical.
*
*
* Protobuf enum {@code tensorflow.metadata.v0.StringDomain.Categorical}
*/
public enum Categorical
implements com.google.protobuf.ProtocolMessageEnum {
/**
* CATEGORICAL_UNSPECIFIED = 0;
*/
CATEGORICAL_UNSPECIFIED(0),
/**
* CATEGORICAL_YES = 1;
*/
CATEGORICAL_YES(1),
/**
* CATEGORICAL_NO = 2;
*/
CATEGORICAL_NO(2),
;
/**
* CATEGORICAL_UNSPECIFIED = 0;
*/
public static final int CATEGORICAL_UNSPECIFIED_VALUE = 0;
/**
* CATEGORICAL_YES = 1;
*/
public static final int CATEGORICAL_YES_VALUE = 1;
/**
* CATEGORICAL_NO = 2;
*/
public static final int CATEGORICAL_NO_VALUE = 2;
public final int getNumber() {
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Categorical valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Categorical forNumber(int value) {
switch (value) {
case 0: return CATEGORICAL_UNSPECIFIED;
case 1: return CATEGORICAL_YES;
case 2: return CATEGORICAL_NO;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Categorical> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Categorical findValueByNumber(int number) {
return Categorical.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.tensorflow.metadata.v0.StringDomain.getDescriptor().getEnumTypes().get(0);
}
private static final Categorical[] VALUES = values();
public static Categorical valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int value;
private Categorical(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:tensorflow.metadata.v0.StringDomain.Categorical)
}
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 VALUE_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList value_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @return A list containing the value.
*/
public com.google.protobuf.ProtocolStringList
getValueList() {
return value_;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @return The count of value.
*/
public int getValueCount() {
return value_.size();
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param index The index of the element to return.
* @return The value at the given index.
*/
public java.lang.String getValue(int index) {
return value_.get(index);
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param index The index of the value to return.
* @return The bytes of the value at the given index.
*/
public com.google.protobuf.ByteString
getValueBytes(int index) {
return value_.getByteString(index);
}
public static final int IS_CATEGORICAL_FIELD_NUMBER = 3;
private int isCategorical_ = 0;
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @return Whether the isCategorical field is set.
*/
@java.lang.Override public boolean hasIsCategorical() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @return The isCategorical.
*/
@java.lang.Override public org.tensorflow.metadata.v0.StringDomain.Categorical getIsCategorical() {
org.tensorflow.metadata.v0.StringDomain.Categorical result = org.tensorflow.metadata.v0.StringDomain.Categorical.forNumber(isCategorical_);
return result == null ? org.tensorflow.metadata.v0.StringDomain.Categorical.CATEGORICAL_UNSPECIFIED : result;
}
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_);
}
for (int i = 0; i < value_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, value_.getRaw(i));
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeEnum(3, isCategorical_);
}
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_);
}
{
int dataSize = 0;
for (int i = 0; i < value_.size(); i++) {
dataSize += computeStringSizeNoTag(value_.getRaw(i));
}
size += dataSize;
size += 1 * getValueList().size();
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, isCategorical_);
}
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.StringDomain)) {
return super.equals(obj);
}
org.tensorflow.metadata.v0.StringDomain other = (org.tensorflow.metadata.v0.StringDomain) obj;
if (hasName() != other.hasName()) return false;
if (hasName()) {
if (!getName()
.equals(other.getName())) return false;
}
if (!getValueList()
.equals(other.getValueList())) return false;
if (hasIsCategorical() != other.hasIsCategorical()) return false;
if (hasIsCategorical()) {
if (isCategorical_ != other.isCategorical_) 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 (getValueCount() > 0) {
hash = (37 * hash) + VALUE_FIELD_NUMBER;
hash = (53 * hash) + getValueList().hashCode();
}
if (hasIsCategorical()) {
hash = (37 * hash) + IS_CATEGORICAL_FIELD_NUMBER;
hash = (53 * hash) + isCategorical_;
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.tensorflow.metadata.v0.StringDomain parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.metadata.v0.StringDomain 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.StringDomain parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.metadata.v0.StringDomain 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.StringDomain parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.metadata.v0.StringDomain parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.metadata.v0.StringDomain parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.metadata.v0.StringDomain 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.StringDomain parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.tensorflow.metadata.v0.StringDomain 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.StringDomain parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.metadata.v0.StringDomain 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.StringDomain 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 string values.
*
*
* Protobuf type {@code tensorflow.metadata.v0.StringDomain}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:tensorflow.metadata.v0.StringDomain)
org.tensorflow.metadata.v0.StringDomainOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_StringDomain_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_StringDomain_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.metadata.v0.StringDomain.class, org.tensorflow.metadata.v0.StringDomain.Builder.class);
}
// Construct using org.tensorflow.metadata.v0.StringDomain.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
value_ =
com.google.protobuf.LazyStringArrayList.emptyList();
isCategorical_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.tensorflow.metadata.v0.SchemaOuterClass.internal_static_tensorflow_metadata_v0_StringDomain_descriptor;
}
@java.lang.Override
public org.tensorflow.metadata.v0.StringDomain getDefaultInstanceForType() {
return org.tensorflow.metadata.v0.StringDomain.getDefaultInstance();
}
@java.lang.Override
public org.tensorflow.metadata.v0.StringDomain build() {
org.tensorflow.metadata.v0.StringDomain result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.tensorflow.metadata.v0.StringDomain buildPartial() {
org.tensorflow.metadata.v0.StringDomain result = new org.tensorflow.metadata.v0.StringDomain(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(org.tensorflow.metadata.v0.StringDomain 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)) {
value_.makeImmutable();
result.value_ = value_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.isCategorical_ = isCategorical_;
to_bitField0_ |= 0x00000002;
}
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.StringDomain) {
return mergeFrom((org.tensorflow.metadata.v0.StringDomain)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.tensorflow.metadata.v0.StringDomain other) {
if (other == org.tensorflow.metadata.v0.StringDomain.getDefaultInstance()) return this;
if (other.hasName()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.value_.isEmpty()) {
if (value_.isEmpty()) {
value_ = other.value_;
bitField0_ |= 0x00000002;
} else {
ensureValueIsMutable();
value_.addAll(other.value_);
}
onChanged();
}
if (other.hasIsCategorical()) {
setIsCategorical(other.getIsCategorical());
}
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 18: {
com.google.protobuf.ByteString bs = input.readBytes();
ensureValueIsMutable();
value_.add(bs);
break;
} // case 18
case 24: {
int tmpRaw = input.readEnum();
org.tensorflow.metadata.v0.StringDomain.Categorical tmpValue =
org.tensorflow.metadata.v0.StringDomain.Categorical.forNumber(tmpRaw);
if (tmpValue == null) {
mergeUnknownVarintField(3, tmpRaw);
} else {
isCategorical_ = tmpRaw;
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 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 com.google.protobuf.LazyStringArrayList value_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureValueIsMutable() {
if (!value_.isModifiable()) {
value_ = new com.google.protobuf.LazyStringArrayList(value_);
}
bitField0_ |= 0x00000002;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @return A list containing the value.
*/
public com.google.protobuf.ProtocolStringList
getValueList() {
value_.makeImmutable();
return value_;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @return The count of value.
*/
public int getValueCount() {
return value_.size();
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param index The index of the element to return.
* @return The value at the given index.
*/
public java.lang.String getValue(int index) {
return value_.get(index);
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param index The index of the value to return.
* @return The bytes of the value at the given index.
*/
public com.google.protobuf.ByteString
getValueBytes(int index) {
return value_.getByteString(index);
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param index The index to set the value at.
* @param value The value to set.
* @return This builder for chaining.
*/
public Builder setValue(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureValueIsMutable();
value_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param value The value to add.
* @return This builder for chaining.
*/
public Builder addValue(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureValueIsMutable();
value_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param values The value to add.
* @return This builder for chaining.
*/
public Builder addAllValue(
java.lang.Iterable values) {
ensureValueIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, value_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @return This builder for chaining.
*/
public Builder clearValue() {
value_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);;
onChanged();
return this;
}
/**
*
* The values appearing in the domain.
*
*
* repeated string value = 2;
* @param value The bytes of the value to add.
* @return This builder for chaining.
*/
public Builder addValueBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
ensureValueIsMutable();
value_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private int isCategorical_ = 0;
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @return Whether the isCategorical field is set.
*/
@java.lang.Override public boolean hasIsCategorical() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @return The isCategorical.
*/
@java.lang.Override
public org.tensorflow.metadata.v0.StringDomain.Categorical getIsCategorical() {
org.tensorflow.metadata.v0.StringDomain.Categorical result = org.tensorflow.metadata.v0.StringDomain.Categorical.forNumber(isCategorical_);
return result == null ? org.tensorflow.metadata.v0.StringDomain.Categorical.CATEGORICAL_UNSPECIFIED : result;
}
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @param value The isCategorical to set.
* @return This builder for chaining.
*/
public Builder setIsCategorical(org.tensorflow.metadata.v0.StringDomain.Categorical value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
isCategorical_ = value.getNumber();
onChanged();
return this;
}
/**
* optional .tensorflow.metadata.v0.StringDomain.Categorical is_categorical = 3;
* @return This builder for chaining.
*/
public Builder clearIsCategorical() {
bitField0_ = (bitField0_ & ~0x00000004);
isCategorical_ = 0;
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.StringDomain)
}
// @@protoc_insertion_point(class_scope:tensorflow.metadata.v0.StringDomain)
private static final org.tensorflow.metadata.v0.StringDomain DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.tensorflow.metadata.v0.StringDomain();
}
public static org.tensorflow.metadata.v0.StringDomain getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StringDomain 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.StringDomain getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy