com.clarifai.grpc.api.Region Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
/**
*
* A region within the data.
*
*
* Protobuf type {@code clarifai.api.Region}
*/
public final class Region extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clarifai.api.Region)
RegionOrBuilder {
private static final long serialVersionUID = 0L;
// Use Region.newBuilder() to construct.
private Region(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Region() {
id_ = "";
trackId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Region();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Region(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
id_ = s;
break;
}
case 18: {
com.clarifai.grpc.api.RegionInfo.Builder subBuilder = null;
if (regionInfo_ != null) {
subBuilder = regionInfo_.toBuilder();
}
regionInfo_ = input.readMessage(com.clarifai.grpc.api.RegionInfo.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(regionInfo_);
regionInfo_ = subBuilder.buildPartial();
}
break;
}
case 26: {
com.clarifai.grpc.api.Data.Builder subBuilder = null;
if (data_ != null) {
subBuilder = data_.toBuilder();
}
data_ = input.readMessage(com.clarifai.grpc.api.Data.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(data_);
data_ = subBuilder.buildPartial();
}
break;
}
case 37: {
value_ = input.readFloat();
break;
}
case 42: {
java.lang.String s = input.readStringRequireUtf8();
trackId_ = s;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Region_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Region_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.Region.class, com.clarifai.grpc.api.Region.Builder.class);
}
public static final int ID_FIELD_NUMBER = 1;
private volatile java.lang.Object id_;
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @return The id.
*/
@java.lang.Override
public java.lang.String getId() {
java.lang.Object ref = id_;
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();
id_ = s;
return s;
}
}
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @return The bytes for id.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getIdBytes() {
java.lang.Object ref = id_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
id_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int REGION_INFO_FIELD_NUMBER = 2;
private com.clarifai.grpc.api.RegionInfo regionInfo_;
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
* @return Whether the regionInfo field is set.
*/
@java.lang.Override
public boolean hasRegionInfo() {
return regionInfo_ != null;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
* @return The regionInfo.
*/
@java.lang.Override
public com.clarifai.grpc.api.RegionInfo getRegionInfo() {
return regionInfo_ == null ? com.clarifai.grpc.api.RegionInfo.getDefaultInstance() : regionInfo_;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
@java.lang.Override
public com.clarifai.grpc.api.RegionInfoOrBuilder getRegionInfoOrBuilder() {
return getRegionInfo();
}
public static final int DATA_FIELD_NUMBER = 3;
private com.clarifai.grpc.api.Data data_;
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
* @return Whether the data field is set.
*/
@java.lang.Override
public boolean hasData() {
return data_ != null;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
* @return The data.
*/
@java.lang.Override
public com.clarifai.grpc.api.Data getData() {
return data_ == null ? com.clarifai.grpc.api.Data.getDefaultInstance() : data_;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
@java.lang.Override
public com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder() {
return getData();
}
public static final int VALUE_FIELD_NUMBER = 4;
private float value_;
/**
*
* This is the confidence score of the overall Region.
*
*
* float value = 4;
* @return The value.
*/
@java.lang.Override
public float getValue() {
return value_;
}
public static final int TRACK_ID_FIELD_NUMBER = 5;
private volatile java.lang.Object trackId_;
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @return The trackId.
*/
@java.lang.Override
public java.lang.String getTrackId() {
java.lang.Object ref = trackId_;
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();
trackId_ = s;
return s;
}
}
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @return The bytes for trackId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTrackIdBytes() {
java.lang.Object ref = trackId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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(id_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_);
}
if (regionInfo_ != null) {
output.writeMessage(2, getRegionInfo());
}
if (data_ != null) {
output.writeMessage(3, getData());
}
if (java.lang.Float.floatToRawIntBits(value_) != 0) {
output.writeFloat(4, value_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(trackId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, trackId_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_);
}
if (regionInfo_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getRegionInfo());
}
if (data_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getData());
}
if (java.lang.Float.floatToRawIntBits(value_) != 0) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(4, value_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(trackId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, trackId_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.clarifai.grpc.api.Region)) {
return super.equals(obj);
}
com.clarifai.grpc.api.Region other = (com.clarifai.grpc.api.Region) obj;
if (!getId()
.equals(other.getId())) return false;
if (hasRegionInfo() != other.hasRegionInfo()) return false;
if (hasRegionInfo()) {
if (!getRegionInfo()
.equals(other.getRegionInfo())) return false;
}
if (hasData() != other.hasData()) return false;
if (hasData()) {
if (!getData()
.equals(other.getData())) return false;
}
if (java.lang.Float.floatToIntBits(getValue())
!= java.lang.Float.floatToIntBits(
other.getValue())) return false;
if (!getTrackId()
.equals(other.getTrackId())) return false;
if (!unknownFields.equals(other.unknownFields)) 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) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId().hashCode();
if (hasRegionInfo()) {
hash = (37 * hash) + REGION_INFO_FIELD_NUMBER;
hash = (53 * hash) + getRegionInfo().hashCode();
}
if (hasData()) {
hash = (37 * hash) + DATA_FIELD_NUMBER;
hash = (53 * hash) + getData().hashCode();
}
hash = (37 * hash) + VALUE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getValue());
hash = (37 * hash) + TRACK_ID_FIELD_NUMBER;
hash = (53 * hash) + getTrackId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.clarifai.grpc.api.Region parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.Region parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.Region parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.Region parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.Region parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.Region parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.Region parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.Region 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 com.clarifai.grpc.api.Region parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.Region 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 com.clarifai.grpc.api.Region parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.Region 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(com.clarifai.grpc.api.Region 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;
}
/**
*
* A region within the data.
*
*
* Protobuf type {@code clarifai.api.Region}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:clarifai.api.Region)
com.clarifai.grpc.api.RegionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Region_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Region_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.Region.class, com.clarifai.grpc.api.Region.Builder.class);
}
// Construct using com.clarifai.grpc.api.Region.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
id_ = "";
if (regionInfoBuilder_ == null) {
regionInfo_ = null;
} else {
regionInfo_ = null;
regionInfoBuilder_ = null;
}
if (dataBuilder_ == null) {
data_ = null;
} else {
data_ = null;
dataBuilder_ = null;
}
value_ = 0F;
trackId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Region_descriptor;
}
@java.lang.Override
public com.clarifai.grpc.api.Region getDefaultInstanceForType() {
return com.clarifai.grpc.api.Region.getDefaultInstance();
}
@java.lang.Override
public com.clarifai.grpc.api.Region build() {
com.clarifai.grpc.api.Region result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clarifai.grpc.api.Region buildPartial() {
com.clarifai.grpc.api.Region result = new com.clarifai.grpc.api.Region(this);
result.id_ = id_;
if (regionInfoBuilder_ == null) {
result.regionInfo_ = regionInfo_;
} else {
result.regionInfo_ = regionInfoBuilder_.build();
}
if (dataBuilder_ == null) {
result.data_ = data_;
} else {
result.data_ = dataBuilder_.build();
}
result.value_ = value_;
result.trackId_ = trackId_;
onBuilt();
return result;
}
@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 com.clarifai.grpc.api.Region) {
return mergeFrom((com.clarifai.grpc.api.Region)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clarifai.grpc.api.Region other) {
if (other == com.clarifai.grpc.api.Region.getDefaultInstance()) return this;
if (!other.getId().isEmpty()) {
id_ = other.id_;
onChanged();
}
if (other.hasRegionInfo()) {
mergeRegionInfo(other.getRegionInfo());
}
if (other.hasData()) {
mergeData(other.getData());
}
if (other.getValue() != 0F) {
setValue(other.getValue());
}
if (!other.getTrackId().isEmpty()) {
trackId_ = other.trackId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.clarifai.grpc.api.Region parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clarifai.grpc.api.Region) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object id_ = "";
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @return The id.
*/
public java.lang.String getId() {
java.lang.Object ref = id_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
id_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @return The bytes for id.
*/
public com.google.protobuf.ByteString
getIdBytes() {
java.lang.Object ref = id_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
id_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @param value The id to set.
* @return This builder for chaining.
*/
public Builder setId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
onChanged();
return this;
}
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @return This builder for chaining.
*/
public Builder clearId() {
id_ = getDefaultInstance().getId();
onChanged();
return this;
}
/**
*
* A unique id for the region.
*
*
* string id = 1;
* @param value The bytes for id to set.
* @return This builder for chaining.
*/
public Builder setIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
id_ = value;
onChanged();
return this;
}
private com.clarifai.grpc.api.RegionInfo regionInfo_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.RegionInfo, com.clarifai.grpc.api.RegionInfo.Builder, com.clarifai.grpc.api.RegionInfoOrBuilder> regionInfoBuilder_;
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
* @return Whether the regionInfo field is set.
*/
public boolean hasRegionInfo() {
return regionInfoBuilder_ != null || regionInfo_ != null;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
* @return The regionInfo.
*/
public com.clarifai.grpc.api.RegionInfo getRegionInfo() {
if (regionInfoBuilder_ == null) {
return regionInfo_ == null ? com.clarifai.grpc.api.RegionInfo.getDefaultInstance() : regionInfo_;
} else {
return regionInfoBuilder_.getMessage();
}
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public Builder setRegionInfo(com.clarifai.grpc.api.RegionInfo value) {
if (regionInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
regionInfo_ = value;
onChanged();
} else {
regionInfoBuilder_.setMessage(value);
}
return this;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public Builder setRegionInfo(
com.clarifai.grpc.api.RegionInfo.Builder builderForValue) {
if (regionInfoBuilder_ == null) {
regionInfo_ = builderForValue.build();
onChanged();
} else {
regionInfoBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public Builder mergeRegionInfo(com.clarifai.grpc.api.RegionInfo value) {
if (regionInfoBuilder_ == null) {
if (regionInfo_ != null) {
regionInfo_ =
com.clarifai.grpc.api.RegionInfo.newBuilder(regionInfo_).mergeFrom(value).buildPartial();
} else {
regionInfo_ = value;
}
onChanged();
} else {
regionInfoBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public Builder clearRegionInfo() {
if (regionInfoBuilder_ == null) {
regionInfo_ = null;
onChanged();
} else {
regionInfo_ = null;
regionInfoBuilder_ = null;
}
return this;
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public com.clarifai.grpc.api.RegionInfo.Builder getRegionInfoBuilder() {
onChanged();
return getRegionInfoFieldBuilder().getBuilder();
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
public com.clarifai.grpc.api.RegionInfoOrBuilder getRegionInfoOrBuilder() {
if (regionInfoBuilder_ != null) {
return regionInfoBuilder_.getMessageOrBuilder();
} else {
return regionInfo_ == null ?
com.clarifai.grpc.api.RegionInfo.getDefaultInstance() : regionInfo_;
}
}
/**
*
* The details about the location of the region.
*
*
* .clarifai.api.RegionInfo region_info = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.RegionInfo, com.clarifai.grpc.api.RegionInfo.Builder, com.clarifai.grpc.api.RegionInfoOrBuilder>
getRegionInfoFieldBuilder() {
if (regionInfoBuilder_ == null) {
regionInfoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.RegionInfo, com.clarifai.grpc.api.RegionInfo.Builder, com.clarifai.grpc.api.RegionInfoOrBuilder>(
getRegionInfo(),
getParentForChildren(),
isClean());
regionInfo_ = null;
}
return regionInfoBuilder_;
}
private com.clarifai.grpc.api.Data data_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Data, com.clarifai.grpc.api.Data.Builder, com.clarifai.grpc.api.DataOrBuilder> dataBuilder_;
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
* @return Whether the data field is set.
*/
public boolean hasData() {
return dataBuilder_ != null || data_ != null;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
* @return The data.
*/
public com.clarifai.grpc.api.Data getData() {
if (dataBuilder_ == null) {
return data_ == null ? com.clarifai.grpc.api.Data.getDefaultInstance() : data_;
} else {
return dataBuilder_.getMessage();
}
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public Builder setData(com.clarifai.grpc.api.Data value) {
if (dataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
data_ = value;
onChanged();
} else {
dataBuilder_.setMessage(value);
}
return this;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public Builder setData(
com.clarifai.grpc.api.Data.Builder builderForValue) {
if (dataBuilder_ == null) {
data_ = builderForValue.build();
onChanged();
} else {
dataBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public Builder mergeData(com.clarifai.grpc.api.Data value) {
if (dataBuilder_ == null) {
if (data_ != null) {
data_ =
com.clarifai.grpc.api.Data.newBuilder(data_).mergeFrom(value).buildPartial();
} else {
data_ = value;
}
onChanged();
} else {
dataBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public Builder clearData() {
if (dataBuilder_ == null) {
data_ = null;
onChanged();
} else {
data_ = null;
dataBuilder_ = null;
}
return this;
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public com.clarifai.grpc.api.Data.Builder getDataBuilder() {
onChanged();
return getDataFieldBuilder().getBuilder();
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
public com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder() {
if (dataBuilder_ != null) {
return dataBuilder_.getMessageOrBuilder();
} else {
return data_ == null ?
com.clarifai.grpc.api.Data.getDefaultInstance() : data_;
}
}
/**
*
* A recursive definition of the data within the Region. For example, this will contain
* data.concepts if the region also has annotations or predictions of concepts within it.
*
*
* .clarifai.api.Data data = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Data, com.clarifai.grpc.api.Data.Builder, com.clarifai.grpc.api.DataOrBuilder>
getDataFieldBuilder() {
if (dataBuilder_ == null) {
dataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.Data, com.clarifai.grpc.api.Data.Builder, com.clarifai.grpc.api.DataOrBuilder>(
getData(),
getParentForChildren(),
isClean());
data_ = null;
}
return dataBuilder_;
}
private float value_ ;
/**
*
* This is the confidence score of the overall Region.
*
*
* float value = 4;
* @return The value.
*/
@java.lang.Override
public float getValue() {
return value_;
}
/**
*
* This is the confidence score of the overall Region.
*
*
* float value = 4;
* @param value The value to set.
* @return This builder for chaining.
*/
public Builder setValue(float value) {
value_ = value;
onChanged();
return this;
}
/**
*
* This is the confidence score of the overall Region.
*
*
* float value = 4;
* @return This builder for chaining.
*/
public Builder clearValue() {
value_ = 0F;
onChanged();
return this;
}
private java.lang.Object trackId_ = "";
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @return The trackId.
*/
public java.lang.String getTrackId() {
java.lang.Object ref = trackId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
trackId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @return The bytes for trackId.
*/
public com.google.protobuf.ByteString
getTrackIdBytes() {
java.lang.Object ref = trackId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
trackId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @param value The trackId to set.
* @return This builder for chaining.
*/
public Builder setTrackId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
trackId_ = value;
onChanged();
return this;
}
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @return This builder for chaining.
*/
public Builder clearTrackId() {
trackId_ = getDefaultInstance().getTrackId();
onChanged();
return this;
}
/**
*
* For tracking algorithsm and annotations we tie regions together with this track id.
*
*
* string track_id = 5;
* @param value The bytes for trackId to set.
* @return This builder for chaining.
*/
public Builder setTrackIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
trackId_ = value;
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:clarifai.api.Region)
}
// @@protoc_insertion_point(class_scope:clarifai.api.Region)
private static final com.clarifai.grpc.api.Region DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clarifai.grpc.api.Region();
}
public static com.clarifai.grpc.api.Region getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Region parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Region(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.clarifai.grpc.api.Region getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}