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

com.google.photos.library.v1.proto.NewMediaItemResult Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/photos/library/v1/photos_library.proto

package com.google.photos.library.v1.proto;

/**
 *
 *
 * 
 * Result of creating a new media item.
 * 
* * Protobuf type {@code google.photos.library.v1.NewMediaItemResult} */ public final class NewMediaItemResult extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.photos.library.v1.NewMediaItemResult) NewMediaItemResultOrBuilder { private static final long serialVersionUID = 0L; // Use NewMediaItemResult.newBuilder() to construct. private NewMediaItemResult(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private NewMediaItemResult() { uploadToken_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new NewMediaItemResult(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.photos.library.v1.proto.LibraryServiceProto .internal_static_google_photos_library_v1_NewMediaItemResult_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.photos.library.v1.proto.LibraryServiceProto .internal_static_google_photos_library_v1_NewMediaItemResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.photos.library.v1.proto.NewMediaItemResult.class, com.google.photos.library.v1.proto.NewMediaItemResult.Builder.class); } public static final int UPLOAD_TOKEN_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object uploadToken_ = ""; /** * * *
   * The upload token used to create this new (simple) media item. Only
   * populated if the media item is simple and required a single upload token.
   * 
* * string upload_token = 1; * * @return The uploadToken. */ @java.lang.Override public java.lang.String getUploadToken() { java.lang.Object ref = uploadToken_; 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(); uploadToken_ = s; return s; } } /** * * *
   * The upload token used to create this new (simple) media item. Only
   * populated if the media item is simple and required a single upload token.
   * 
* * string upload_token = 1; * * @return The bytes for uploadToken. */ @java.lang.Override public com.google.protobuf.ByteString getUploadTokenBytes() { java.lang.Object ref = uploadToken_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); uploadToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int STATUS_FIELD_NUMBER = 2; private com.google.rpc.Status status_; /** * * *
   * If an error occurred during the creation of this media item, this field
   * is  populated with information related to the error. For details regarding
   * this field, see <a href="#Status">Status</a>.
   * 
* * .google.rpc.Status status = 2; * * @return Whether the status field is set. */ @java.lang.Override public boolean hasStatus() { return status_ != null; } /** * * *
   * If an error occurred during the creation of this media item, this field
   * is  populated with information related to the error. For details regarding
   * this field, see <a href="#Status">Status</a>.
   * 
* * .google.rpc.Status status = 2; * * @return The status. */ @java.lang.Override public com.google.rpc.Status getStatus() { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } /** * * *
   * If an error occurred during the creation of this media item, this field
   * is  populated with information related to the error. For details regarding
   * this field, see <a href="#Status">Status</a>.
   * 
* * .google.rpc.Status status = 2; */ @java.lang.Override public com.google.rpc.StatusOrBuilder getStatusOrBuilder() { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } public static final int MEDIA_ITEM_FIELD_NUMBER = 3; private com.google.photos.types.proto.MediaItem mediaItem_; /** * * *
   * Media item created with the upload token. It's populated if no errors
   * occurred and the media item was created successfully.
   * 
* * .google.photos.types.MediaItem media_item = 3; * * @return Whether the mediaItem field is set. */ @java.lang.Override public boolean hasMediaItem() { return mediaItem_ != null; } /** * * *
   * Media item created with the upload token. It's populated if no errors
   * occurred and the media item was created successfully.
   * 
* * .google.photos.types.MediaItem media_item = 3; * * @return The mediaItem. */ @java.lang.Override public com.google.photos.types.proto.MediaItem getMediaItem() { return mediaItem_ == null ? com.google.photos.types.proto.MediaItem.getDefaultInstance() : mediaItem_; } /** * * *
   * Media item created with the upload token. It's populated if no errors
   * occurred and the media item was created successfully.
   * 
* * .google.photos.types.MediaItem media_item = 3; */ @java.lang.Override public com.google.photos.types.proto.MediaItemOrBuilder getMediaItemOrBuilder() { return mediaItem_ == null ? com.google.photos.types.proto.MediaItem.getDefaultInstance() : mediaItem_; } 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(uploadToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, uploadToken_); } if (status_ != null) { output.writeMessage(2, getStatus()); } if (mediaItem_ != null) { output.writeMessage(3, getMediaItem()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(uploadToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, uploadToken_); } if (status_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getStatus()); } if (mediaItem_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getMediaItem()); } 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 com.google.photos.library.v1.proto.NewMediaItemResult)) { return super.equals(obj); } com.google.photos.library.v1.proto.NewMediaItemResult other = (com.google.photos.library.v1.proto.NewMediaItemResult) obj; if (!getUploadToken().equals(other.getUploadToken())) return false; if (hasStatus() != other.hasStatus()) return false; if (hasStatus()) { if (!getStatus().equals(other.getStatus())) return false; } if (hasMediaItem() != other.hasMediaItem()) return false; if (hasMediaItem()) { if (!getMediaItem().equals(other.getMediaItem())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + UPLOAD_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getUploadToken().hashCode(); if (hasStatus()) { hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + getStatus().hashCode(); } if (hasMediaItem()) { hash = (37 * hash) + MEDIA_ITEM_FIELD_NUMBER; hash = (53 * hash) + getMediaItem().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.photos.library.v1.proto.NewMediaItemResult parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.photos.library.v1.proto.NewMediaItemResult 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.google.photos.library.v1.proto.NewMediaItemResult parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.photos.library.v1.proto.NewMediaItemResult 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.google.photos.library.v1.proto.NewMediaItemResult parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.photos.library.v1.proto.NewMediaItemResult 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.google.photos.library.v1.proto.NewMediaItemResult 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; } /** * * *
   * Result of creating a new media item.
   * 
* * Protobuf type {@code google.photos.library.v1.NewMediaItemResult} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.photos.library.v1.NewMediaItemResult) com.google.photos.library.v1.proto.NewMediaItemResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.photos.library.v1.proto.LibraryServiceProto .internal_static_google_photos_library_v1_NewMediaItemResult_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.photos.library.v1.proto.LibraryServiceProto .internal_static_google_photos_library_v1_NewMediaItemResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.photos.library.v1.proto.NewMediaItemResult.class, com.google.photos.library.v1.proto.NewMediaItemResult.Builder.class); } // Construct using com.google.photos.library.v1.proto.NewMediaItemResult.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; uploadToken_ = ""; status_ = null; if (statusBuilder_ != null) { statusBuilder_.dispose(); statusBuilder_ = null; } mediaItem_ = null; if (mediaItemBuilder_ != null) { mediaItemBuilder_.dispose(); mediaItemBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.photos.library.v1.proto.LibraryServiceProto .internal_static_google_photos_library_v1_NewMediaItemResult_descriptor; } @java.lang.Override public com.google.photos.library.v1.proto.NewMediaItemResult getDefaultInstanceForType() { return com.google.photos.library.v1.proto.NewMediaItemResult.getDefaultInstance(); } @java.lang.Override public com.google.photos.library.v1.proto.NewMediaItemResult build() { com.google.photos.library.v1.proto.NewMediaItemResult result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.photos.library.v1.proto.NewMediaItemResult buildPartial() { com.google.photos.library.v1.proto.NewMediaItemResult result = new com.google.photos.library.v1.proto.NewMediaItemResult(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.photos.library.v1.proto.NewMediaItemResult result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.uploadToken_ = uploadToken_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.status_ = statusBuilder_ == null ? status_ : statusBuilder_.build(); } if (((from_bitField0_ & 0x00000004) != 0)) { result.mediaItem_ = mediaItemBuilder_ == null ? mediaItem_ : mediaItemBuilder_.build(); } } @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.google.photos.library.v1.proto.NewMediaItemResult) { return mergeFrom((com.google.photos.library.v1.proto.NewMediaItemResult) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.photos.library.v1.proto.NewMediaItemResult other) { if (other == com.google.photos.library.v1.proto.NewMediaItemResult.getDefaultInstance()) return this; if (!other.getUploadToken().isEmpty()) { uploadToken_ = other.uploadToken_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasStatus()) { mergeStatus(other.getStatus()); } if (other.hasMediaItem()) { mergeMediaItem(other.getMediaItem()); } 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: { uploadToken_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage(getStatusFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 case 26: { input.readMessage(getMediaItemFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 26 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 uploadToken_ = ""; /** * * *
     * The upload token used to create this new (simple) media item. Only
     * populated if the media item is simple and required a single upload token.
     * 
* * string upload_token = 1; * * @return The uploadToken. */ public java.lang.String getUploadToken() { java.lang.Object ref = uploadToken_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); uploadToken_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The upload token used to create this new (simple) media item. Only
     * populated if the media item is simple and required a single upload token.
     * 
* * string upload_token = 1; * * @return The bytes for uploadToken. */ public com.google.protobuf.ByteString getUploadTokenBytes() { java.lang.Object ref = uploadToken_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); uploadToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The upload token used to create this new (simple) media item. Only
     * populated if the media item is simple and required a single upload token.
     * 
* * string upload_token = 1; * * @param value The uploadToken to set. * @return This builder for chaining. */ public Builder setUploadToken(java.lang.String value) { if (value == null) { throw new NullPointerException(); } uploadToken_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * The upload token used to create this new (simple) media item. Only
     * populated if the media item is simple and required a single upload token.
     * 
* * string upload_token = 1; * * @return This builder for chaining. */ public Builder clearUploadToken() { uploadToken_ = getDefaultInstance().getUploadToken(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * The upload token used to create this new (simple) media item. Only
     * populated if the media item is simple and required a single upload token.
     * 
* * string upload_token = 1; * * @param value The bytes for uploadToken to set. * @return This builder for chaining. */ public Builder setUploadTokenBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); uploadToken_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private com.google.rpc.Status status_; private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> statusBuilder_; /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; * * @return Whether the status field is set. */ public boolean hasStatus() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; * * @return The status. */ public com.google.rpc.Status getStatus() { if (statusBuilder_ == null) { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } else { return statusBuilder_.getMessage(); } } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public Builder setStatus(com.google.rpc.Status value) { if (statusBuilder_ == null) { if (value == null) { throw new NullPointerException(); } status_ = value; } else { statusBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public Builder setStatus(com.google.rpc.Status.Builder builderForValue) { if (statusBuilder_ == null) { status_ = builderForValue.build(); } else { statusBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public Builder mergeStatus(com.google.rpc.Status value) { if (statusBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && status_ != null && status_ != com.google.rpc.Status.getDefaultInstance()) { getStatusBuilder().mergeFrom(value); } else { status_ = value; } } else { statusBuilder_.mergeFrom(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public Builder clearStatus() { bitField0_ = (bitField0_ & ~0x00000002); status_ = null; if (statusBuilder_ != null) { statusBuilder_.dispose(); statusBuilder_ = null; } onChanged(); return this; } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public com.google.rpc.Status.Builder getStatusBuilder() { bitField0_ |= 0x00000002; onChanged(); return getStatusFieldBuilder().getBuilder(); } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ public com.google.rpc.StatusOrBuilder getStatusOrBuilder() { if (statusBuilder_ != null) { return statusBuilder_.getMessageOrBuilder(); } else { return status_ == null ? com.google.rpc.Status.getDefaultInstance() : status_; } } /** * * *
     * If an error occurred during the creation of this media item, this field
     * is  populated with information related to the error. For details regarding
     * this field, see <a href="#Status">Status</a>.
     * 
* * .google.rpc.Status status = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> getStatusFieldBuilder() { if (statusBuilder_ == null) { statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>(getStatus(), getParentForChildren(), isClean()); status_ = null; } return statusBuilder_; } private com.google.photos.types.proto.MediaItem mediaItem_; private com.google.protobuf.SingleFieldBuilderV3< com.google.photos.types.proto.MediaItem, com.google.photos.types.proto.MediaItem.Builder, com.google.photos.types.proto.MediaItemOrBuilder> mediaItemBuilder_; /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; * * @return Whether the mediaItem field is set. */ public boolean hasMediaItem() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; * * @return The mediaItem. */ public com.google.photos.types.proto.MediaItem getMediaItem() { if (mediaItemBuilder_ == null) { return mediaItem_ == null ? com.google.photos.types.proto.MediaItem.getDefaultInstance() : mediaItem_; } else { return mediaItemBuilder_.getMessage(); } } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public Builder setMediaItem(com.google.photos.types.proto.MediaItem value) { if (mediaItemBuilder_ == null) { if (value == null) { throw new NullPointerException(); } mediaItem_ = value; } else { mediaItemBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public Builder setMediaItem(com.google.photos.types.proto.MediaItem.Builder builderForValue) { if (mediaItemBuilder_ == null) { mediaItem_ = builderForValue.build(); } else { mediaItemBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public Builder mergeMediaItem(com.google.photos.types.proto.MediaItem value) { if (mediaItemBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && mediaItem_ != null && mediaItem_ != com.google.photos.types.proto.MediaItem.getDefaultInstance()) { getMediaItemBuilder().mergeFrom(value); } else { mediaItem_ = value; } } else { mediaItemBuilder_.mergeFrom(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public Builder clearMediaItem() { bitField0_ = (bitField0_ & ~0x00000004); mediaItem_ = null; if (mediaItemBuilder_ != null) { mediaItemBuilder_.dispose(); mediaItemBuilder_ = null; } onChanged(); return this; } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public com.google.photos.types.proto.MediaItem.Builder getMediaItemBuilder() { bitField0_ |= 0x00000004; onChanged(); return getMediaItemFieldBuilder().getBuilder(); } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ public com.google.photos.types.proto.MediaItemOrBuilder getMediaItemOrBuilder() { if (mediaItemBuilder_ != null) { return mediaItemBuilder_.getMessageOrBuilder(); } else { return mediaItem_ == null ? com.google.photos.types.proto.MediaItem.getDefaultInstance() : mediaItem_; } } /** * * *
     * Media item created with the upload token. It's populated if no errors
     * occurred and the media item was created successfully.
     * 
* * .google.photos.types.MediaItem media_item = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.photos.types.proto.MediaItem, com.google.photos.types.proto.MediaItem.Builder, com.google.photos.types.proto.MediaItemOrBuilder> getMediaItemFieldBuilder() { if (mediaItemBuilder_ == null) { mediaItemBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.photos.types.proto.MediaItem, com.google.photos.types.proto.MediaItem.Builder, com.google.photos.types.proto.MediaItemOrBuilder>( getMediaItem(), getParentForChildren(), isClean()); mediaItem_ = null; } return mediaItemBuilder_; } @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:google.photos.library.v1.NewMediaItemResult) } // @@protoc_insertion_point(class_scope:google.photos.library.v1.NewMediaItemResult) private static final com.google.photos.library.v1.proto.NewMediaItemResult DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.photos.library.v1.proto.NewMediaItemResult(); } public static com.google.photos.library.v1.proto.NewMediaItemResult getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public NewMediaItemResult 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 com.google.photos.library.v1.proto.NewMediaItemResult getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy