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

com.clarifai.grpc.api.Frame Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

/**
 * 
 * A Frame of time-series Data such as a Video.
 * 
* * Protobuf type {@code clarifai.api.Frame} */ public final class Frame extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:clarifai.api.Frame) FrameOrBuilder { private static final long serialVersionUID = 0L; // Use Frame.newBuilder() to construct. private Frame(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Frame() { id_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Frame(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private Frame( 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: { com.clarifai.grpc.api.FrameInfo.Builder subBuilder = null; if (frameInfo_ != null) { subBuilder = frameInfo_.toBuilder(); } frameInfo_ = input.readMessage(com.clarifai.grpc.api.FrameInfo.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(frameInfo_); frameInfo_ = subBuilder.buildPartial(); } break; } case 18: { 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 26: { java.lang.String s = input.readStringRequireUtf8(); id_ = 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_Frame_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Frame_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.Frame.class, com.clarifai.grpc.api.Frame.Builder.class); } public static final int FRAME_INFO_FIELD_NUMBER = 1; private com.clarifai.grpc.api.FrameInfo frameInfo_; /** *
   * Information aboue frame such as number and time.
   * 
* * .clarifai.api.FrameInfo frame_info = 1; * @return Whether the frameInfo field is set. */ @java.lang.Override public boolean hasFrameInfo() { return frameInfo_ != null; } /** *
   * Information aboue frame such as number and time.
   * 
* * .clarifai.api.FrameInfo frame_info = 1; * @return The frameInfo. */ @java.lang.Override public com.clarifai.grpc.api.FrameInfo getFrameInfo() { return frameInfo_ == null ? com.clarifai.grpc.api.FrameInfo.getDefaultInstance() : frameInfo_; } /** *
   * Information aboue frame such as number and time.
   * 
* * .clarifai.api.FrameInfo frame_info = 1; */ @java.lang.Override public com.clarifai.grpc.api.FrameInfoOrBuilder getFrameInfoOrBuilder() { return getFrameInfo(); } public static final int DATA_FIELD_NUMBER = 2; private com.clarifai.grpc.api.Data data_; /** *
   * A recursive definition of the data within the Frame. For example, this will contain
   * data.concepts if the Frame also has annotations or predictions of concepts within it.
   * This can also have data.regions for annotation or predictions of detection regions, which can
   * then recursively have their data field filled in as well.
   * 
* * .clarifai.api.Data data = 2; * @return Whether the data field is set. */ @java.lang.Override public boolean hasData() { return data_ != null; } /** *
   * A recursive definition of the data within the Frame. For example, this will contain
   * data.concepts if the Frame also has annotations or predictions of concepts within it.
   * This can also have data.regions for annotation or predictions of detection regions, which can
   * then recursively have their data field filled in as well.
   * 
* * .clarifai.api.Data data = 2; * @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 Frame. For example, this will contain
   * data.concepts if the Frame also has annotations or predictions of concepts within it.
   * This can also have data.regions for annotation or predictions of detection regions, which can
   * then recursively have their data field filled in as well.
   * 
* * .clarifai.api.Data data = 2; */ @java.lang.Override public com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder() { return getData(); } public static final int ID_FIELD_NUMBER = 3; private volatile java.lang.Object id_; /** *
   * An ID for the frame.
   * 
* * string id = 3; * @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; } } /** *
   * An ID for the frame.
   * 
* * string id = 3; * @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; } } 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 (frameInfo_ != null) { output.writeMessage(1, getFrameInfo()); } if (data_ != null) { output.writeMessage(2, getData()); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, id_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (frameInfo_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getFrameInfo()); } if (data_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getData()); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, id_); } 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.Frame)) { return super.equals(obj); } com.clarifai.grpc.api.Frame other = (com.clarifai.grpc.api.Frame) obj; if (hasFrameInfo() != other.hasFrameInfo()) return false; if (hasFrameInfo()) { if (!getFrameInfo() .equals(other.getFrameInfo())) return false; } if (hasData() != other.hasData()) return false; if (hasData()) { if (!getData() .equals(other.getData())) return false; } if (!getId() .equals(other.getId())) 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(); if (hasFrameInfo()) { hash = (37 * hash) + FRAME_INFO_FIELD_NUMBER; hash = (53 * hash) + getFrameInfo().hashCode(); } if (hasData()) { hash = (37 * hash) + DATA_FIELD_NUMBER; hash = (53 * hash) + getData().hashCode(); } hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + getId().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.clarifai.grpc.api.Frame parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.Frame 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.Frame parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.Frame 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.Frame parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.Frame parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.clarifai.grpc.api.Frame parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.Frame 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.Frame parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.clarifai.grpc.api.Frame 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.Frame parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.Frame 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.Frame 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 Frame of time-series Data such as a Video.
   * 
* * Protobuf type {@code clarifai.api.Frame} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:clarifai.api.Frame) com.clarifai.grpc.api.FrameOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Frame_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Frame_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.Frame.class, com.clarifai.grpc.api.Frame.Builder.class); } // Construct using com.clarifai.grpc.api.Frame.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(); if (frameInfoBuilder_ == null) { frameInfo_ = null; } else { frameInfo_ = null; frameInfoBuilder_ = null; } if (dataBuilder_ == null) { data_ = null; } else { data_ = null; dataBuilder_ = null; } id_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_Frame_descriptor; } @java.lang.Override public com.clarifai.grpc.api.Frame getDefaultInstanceForType() { return com.clarifai.grpc.api.Frame.getDefaultInstance(); } @java.lang.Override public com.clarifai.grpc.api.Frame build() { com.clarifai.grpc.api.Frame result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.clarifai.grpc.api.Frame buildPartial() { com.clarifai.grpc.api.Frame result = new com.clarifai.grpc.api.Frame(this); if (frameInfoBuilder_ == null) { result.frameInfo_ = frameInfo_; } else { result.frameInfo_ = frameInfoBuilder_.build(); } if (dataBuilder_ == null) { result.data_ = data_; } else { result.data_ = dataBuilder_.build(); } result.id_ = id_; 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.Frame) { return mergeFrom((com.clarifai.grpc.api.Frame)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.clarifai.grpc.api.Frame other) { if (other == com.clarifai.grpc.api.Frame.getDefaultInstance()) return this; if (other.hasFrameInfo()) { mergeFrameInfo(other.getFrameInfo()); } if (other.hasData()) { mergeData(other.getData()); } if (!other.getId().isEmpty()) { id_ = other.id_; 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.Frame parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.clarifai.grpc.api.Frame) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private com.clarifai.grpc.api.FrameInfo frameInfo_; private com.google.protobuf.SingleFieldBuilderV3< com.clarifai.grpc.api.FrameInfo, com.clarifai.grpc.api.FrameInfo.Builder, com.clarifai.grpc.api.FrameInfoOrBuilder> frameInfoBuilder_; /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; * @return Whether the frameInfo field is set. */ public boolean hasFrameInfo() { return frameInfoBuilder_ != null || frameInfo_ != null; } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; * @return The frameInfo. */ public com.clarifai.grpc.api.FrameInfo getFrameInfo() { if (frameInfoBuilder_ == null) { return frameInfo_ == null ? com.clarifai.grpc.api.FrameInfo.getDefaultInstance() : frameInfo_; } else { return frameInfoBuilder_.getMessage(); } } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public Builder setFrameInfo(com.clarifai.grpc.api.FrameInfo value) { if (frameInfoBuilder_ == null) { if (value == null) { throw new NullPointerException(); } frameInfo_ = value; onChanged(); } else { frameInfoBuilder_.setMessage(value); } return this; } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public Builder setFrameInfo( com.clarifai.grpc.api.FrameInfo.Builder builderForValue) { if (frameInfoBuilder_ == null) { frameInfo_ = builderForValue.build(); onChanged(); } else { frameInfoBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public Builder mergeFrameInfo(com.clarifai.grpc.api.FrameInfo value) { if (frameInfoBuilder_ == null) { if (frameInfo_ != null) { frameInfo_ = com.clarifai.grpc.api.FrameInfo.newBuilder(frameInfo_).mergeFrom(value).buildPartial(); } else { frameInfo_ = value; } onChanged(); } else { frameInfoBuilder_.mergeFrom(value); } return this; } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public Builder clearFrameInfo() { if (frameInfoBuilder_ == null) { frameInfo_ = null; onChanged(); } else { frameInfo_ = null; frameInfoBuilder_ = null; } return this; } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public com.clarifai.grpc.api.FrameInfo.Builder getFrameInfoBuilder() { onChanged(); return getFrameInfoFieldBuilder().getBuilder(); } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ public com.clarifai.grpc.api.FrameInfoOrBuilder getFrameInfoOrBuilder() { if (frameInfoBuilder_ != null) { return frameInfoBuilder_.getMessageOrBuilder(); } else { return frameInfo_ == null ? com.clarifai.grpc.api.FrameInfo.getDefaultInstance() : frameInfo_; } } /** *
     * Information aboue frame such as number and time.
     * 
* * .clarifai.api.FrameInfo frame_info = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.clarifai.grpc.api.FrameInfo, com.clarifai.grpc.api.FrameInfo.Builder, com.clarifai.grpc.api.FrameInfoOrBuilder> getFrameInfoFieldBuilder() { if (frameInfoBuilder_ == null) { frameInfoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.clarifai.grpc.api.FrameInfo, com.clarifai.grpc.api.FrameInfo.Builder, com.clarifai.grpc.api.FrameInfoOrBuilder>( getFrameInfo(), getParentForChildren(), isClean()); frameInfo_ = null; } return frameInfoBuilder_; } 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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; * @return Whether the data field is set. */ public boolean hasData() { return dataBuilder_ != null || data_ != null; } /** *
     * A recursive definition of the data within the Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; * @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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ 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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ 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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ 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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ public Builder clearData() { if (dataBuilder_ == null) { data_ = null; onChanged(); } else { data_ = null; dataBuilder_ = null; } return this; } /** *
     * A recursive definition of the data within the Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ public com.clarifai.grpc.api.Data.Builder getDataBuilder() { onChanged(); return getDataFieldBuilder().getBuilder(); } /** *
     * A recursive definition of the data within the Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ 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 Frame. For example, this will contain
     * data.concepts if the Frame also has annotations or predictions of concepts within it.
     * This can also have data.regions for annotation or predictions of detection regions, which can
     * then recursively have their data field filled in as well.
     * 
* * .clarifai.api.Data data = 2; */ 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 java.lang.Object id_ = ""; /** *
     * An ID for the frame.
     * 
* * string id = 3; * @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; } } /** *
     * An ID for the frame.
     * 
* * string id = 3; * @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; } } /** *
     * An ID for the frame.
     * 
* * string id = 3; * @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; } /** *
     * An ID for the frame.
     * 
* * string id = 3; * @return This builder for chaining. */ public Builder clearId() { id_ = getDefaultInstance().getId(); onChanged(); return this; } /** *
     * An ID for the frame.
     * 
* * string id = 3; * @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; } @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.Frame) } // @@protoc_insertion_point(class_scope:clarifai.api.Frame) private static final com.clarifai.grpc.api.Frame DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.clarifai.grpc.api.Frame(); } public static com.clarifai.grpc.api.Frame getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Frame parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new Frame(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.Frame getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy