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

com.google.cloud.video.transcoder.v1.EditAtom Maven / Gradle / Ivy

There is a newer version: 1.48.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/video/transcoder/v1/resources.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.video.transcoder.v1;

/**
 *
 *
 * 
 * Edit atom.
 * 
* * Protobuf type {@code google.cloud.video.transcoder.v1.EditAtom} */ public final class EditAtom extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.video.transcoder.v1.EditAtom) EditAtomOrBuilder { private static final long serialVersionUID = 0L; // Use EditAtom.newBuilder() to construct. private EditAtom(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private EditAtom() { key_ = ""; inputs_ = com.google.protobuf.LazyStringArrayList.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new EditAtom(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.video.transcoder.v1.ResourcesProto .internal_static_google_cloud_video_transcoder_v1_EditAtom_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.video.transcoder.v1.ResourcesProto .internal_static_google_cloud_video_transcoder_v1_EditAtom_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.video.transcoder.v1.EditAtom.class, com.google.cloud.video.transcoder.v1.EditAtom.Builder.class); } private int bitField0_; public static final int KEY_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object key_ = ""; /** * * *
   * A unique key for this atom. Must be specified when using advanced
   * mapping.
   * 
* * string key = 1; * * @return The key. */ @java.lang.Override public java.lang.String getKey() { java.lang.Object ref = key_; 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(); key_ = s; return s; } } /** * * *
   * A unique key for this atom. Must be specified when using advanced
   * mapping.
   * 
* * string key = 1; * * @return The bytes for key. */ @java.lang.Override public com.google.protobuf.ByteString getKeyBytes() { java.lang.Object ref = key_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); key_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int INPUTS_FIELD_NUMBER = 2; @SuppressWarnings("serial") private com.google.protobuf.LazyStringArrayList inputs_ = com.google.protobuf.LazyStringArrayList.emptyList(); /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @return A list containing the inputs. */ public com.google.protobuf.ProtocolStringList getInputsList() { return inputs_; } /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @return The count of inputs. */ public int getInputsCount() { return inputs_.size(); } /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @param index The index of the element to return. * @return The inputs at the given index. */ public java.lang.String getInputs(int index) { return inputs_.get(index); } /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @param index The index of the value to return. * @return The bytes of the inputs at the given index. */ public com.google.protobuf.ByteString getInputsBytes(int index) { return inputs_.getByteString(index); } public static final int END_TIME_OFFSET_FIELD_NUMBER = 3; private com.google.protobuf.Duration endTimeOffset_; /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return Whether the endTimeOffset field is set. */ @java.lang.Override public boolean hasEndTimeOffset() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return The endTimeOffset. */ @java.lang.Override public com.google.protobuf.Duration getEndTimeOffset() { return endTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTimeOffset_; } /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder() { return endTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTimeOffset_; } public static final int START_TIME_OFFSET_FIELD_NUMBER = 4; private com.google.protobuf.Duration startTimeOffset_; /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return Whether the startTimeOffset field is set. */ @java.lang.Override public boolean hasStartTimeOffset() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return The startTimeOffset. */ @java.lang.Override public com.google.protobuf.Duration getStartTimeOffset() { return startTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTimeOffset_; } /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; */ @java.lang.Override public com.google.protobuf.DurationOrBuilder getStartTimeOffsetOrBuilder() { return startTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTimeOffset_; } 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(key_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, key_); } for (int i = 0; i < inputs_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, inputs_.getRaw(i)); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(3, getEndTimeOffset()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(4, getStartTimeOffset()); } 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(key_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, key_); } { int dataSize = 0; for (int i = 0; i < inputs_.size(); i++) { dataSize += computeStringSizeNoTag(inputs_.getRaw(i)); } size += dataSize; size += 1 * getInputsList().size(); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getEndTimeOffset()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getStartTimeOffset()); } 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.cloud.video.transcoder.v1.EditAtom)) { return super.equals(obj); } com.google.cloud.video.transcoder.v1.EditAtom other = (com.google.cloud.video.transcoder.v1.EditAtom) obj; if (!getKey().equals(other.getKey())) return false; if (!getInputsList().equals(other.getInputsList())) return false; if (hasEndTimeOffset() != other.hasEndTimeOffset()) return false; if (hasEndTimeOffset()) { if (!getEndTimeOffset().equals(other.getEndTimeOffset())) return false; } if (hasStartTimeOffset() != other.hasStartTimeOffset()) return false; if (hasStartTimeOffset()) { if (!getStartTimeOffset().equals(other.getStartTimeOffset())) 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) + KEY_FIELD_NUMBER; hash = (53 * hash) + getKey().hashCode(); if (getInputsCount() > 0) { hash = (37 * hash) + INPUTS_FIELD_NUMBER; hash = (53 * hash) + getInputsList().hashCode(); } if (hasEndTimeOffset()) { hash = (37 * hash) + END_TIME_OFFSET_FIELD_NUMBER; hash = (53 * hash) + getEndTimeOffset().hashCode(); } if (hasStartTimeOffset()) { hash = (37 * hash) + START_TIME_OFFSET_FIELD_NUMBER; hash = (53 * hash) + getStartTimeOffset().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.video.transcoder.v1.EditAtom parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.video.transcoder.v1.EditAtom parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.video.transcoder.v1.EditAtom parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.video.transcoder.v1.EditAtom 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.cloud.video.transcoder.v1.EditAtom parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.video.transcoder.v1.EditAtom parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.video.transcoder.v1.EditAtom parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.video.transcoder.v1.EditAtom 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.cloud.video.transcoder.v1.EditAtom parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.video.transcoder.v1.EditAtom 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.cloud.video.transcoder.v1.EditAtom parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.video.transcoder.v1.EditAtom 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.cloud.video.transcoder.v1.EditAtom 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; } /** * * *
   * Edit atom.
   * 
* * Protobuf type {@code google.cloud.video.transcoder.v1.EditAtom} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.video.transcoder.v1.EditAtom) com.google.cloud.video.transcoder.v1.EditAtomOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.video.transcoder.v1.ResourcesProto .internal_static_google_cloud_video_transcoder_v1_EditAtom_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.video.transcoder.v1.ResourcesProto .internal_static_google_cloud_video_transcoder_v1_EditAtom_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.video.transcoder.v1.EditAtom.class, com.google.cloud.video.transcoder.v1.EditAtom.Builder.class); } // Construct using com.google.cloud.video.transcoder.v1.EditAtom.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getEndTimeOffsetFieldBuilder(); getStartTimeOffsetFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; key_ = ""; inputs_ = com.google.protobuf.LazyStringArrayList.emptyList(); endTimeOffset_ = null; if (endTimeOffsetBuilder_ != null) { endTimeOffsetBuilder_.dispose(); endTimeOffsetBuilder_ = null; } startTimeOffset_ = null; if (startTimeOffsetBuilder_ != null) { startTimeOffsetBuilder_.dispose(); startTimeOffsetBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.video.transcoder.v1.ResourcesProto .internal_static_google_cloud_video_transcoder_v1_EditAtom_descriptor; } @java.lang.Override public com.google.cloud.video.transcoder.v1.EditAtom getDefaultInstanceForType() { return com.google.cloud.video.transcoder.v1.EditAtom.getDefaultInstance(); } @java.lang.Override public com.google.cloud.video.transcoder.v1.EditAtom build() { com.google.cloud.video.transcoder.v1.EditAtom result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.video.transcoder.v1.EditAtom buildPartial() { com.google.cloud.video.transcoder.v1.EditAtom result = new com.google.cloud.video.transcoder.v1.EditAtom(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.video.transcoder.v1.EditAtom result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.key_ = key_; } if (((from_bitField0_ & 0x00000002) != 0)) { inputs_.makeImmutable(); result.inputs_ = inputs_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { result.endTimeOffset_ = endTimeOffsetBuilder_ == null ? endTimeOffset_ : endTimeOffsetBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000008) != 0)) { result.startTimeOffset_ = startTimeOffsetBuilder_ == null ? startTimeOffset_ : startTimeOffsetBuilder_.build(); to_bitField0_ |= 0x00000002; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.video.transcoder.v1.EditAtom) { return mergeFrom((com.google.cloud.video.transcoder.v1.EditAtom) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.video.transcoder.v1.EditAtom other) { if (other == com.google.cloud.video.transcoder.v1.EditAtom.getDefaultInstance()) return this; if (!other.getKey().isEmpty()) { key_ = other.key_; bitField0_ |= 0x00000001; onChanged(); } if (!other.inputs_.isEmpty()) { if (inputs_.isEmpty()) { inputs_ = other.inputs_; bitField0_ |= 0x00000002; } else { ensureInputsIsMutable(); inputs_.addAll(other.inputs_); } onChanged(); } if (other.hasEndTimeOffset()) { mergeEndTimeOffset(other.getEndTimeOffset()); } if (other.hasStartTimeOffset()) { mergeStartTimeOffset(other.getStartTimeOffset()); } 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: { key_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { java.lang.String s = input.readStringRequireUtf8(); ensureInputsIsMutable(); inputs_.add(s); break; } // case 18 case 26: { input.readMessage(getEndTimeOffsetFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 26 case 34: { input.readMessage(getStartTimeOffsetFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000008; break; } // case 34 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 key_ = ""; /** * * *
     * A unique key for this atom. Must be specified when using advanced
     * mapping.
     * 
* * string key = 1; * * @return The key. */ public java.lang.String getKey() { java.lang.Object ref = key_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); key_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * A unique key for this atom. Must be specified when using advanced
     * mapping.
     * 
* * string key = 1; * * @return The bytes for key. */ public com.google.protobuf.ByteString getKeyBytes() { java.lang.Object ref = key_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); key_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * A unique key for this atom. Must be specified when using advanced
     * mapping.
     * 
* * string key = 1; * * @param value The key to set. * @return This builder for chaining. */ public Builder setKey(java.lang.String value) { if (value == null) { throw new NullPointerException(); } key_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * A unique key for this atom. Must be specified when using advanced
     * mapping.
     * 
* * string key = 1; * * @return This builder for chaining. */ public Builder clearKey() { key_ = getDefaultInstance().getKey(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * A unique key for this atom. Must be specified when using advanced
     * mapping.
     * 
* * string key = 1; * * @param value The bytes for key to set. * @return This builder for chaining. */ public Builder setKeyBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); key_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private com.google.protobuf.LazyStringArrayList inputs_ = com.google.protobuf.LazyStringArrayList.emptyList(); private void ensureInputsIsMutable() { if (!inputs_.isModifiable()) { inputs_ = new com.google.protobuf.LazyStringArrayList(inputs_); } bitField0_ |= 0x00000002; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @return A list containing the inputs. */ public com.google.protobuf.ProtocolStringList getInputsList() { inputs_.makeImmutable(); return inputs_; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @return The count of inputs. */ public int getInputsCount() { return inputs_.size(); } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param index The index of the element to return. * @return The inputs at the given index. */ public java.lang.String getInputs(int index) { return inputs_.get(index); } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param index The index of the value to return. * @return The bytes of the inputs at the given index. */ public com.google.protobuf.ByteString getInputsBytes(int index) { return inputs_.getByteString(index); } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param index The index to set the value at. * @param value The inputs to set. * @return This builder for chaining. */ public Builder setInputs(int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureInputsIsMutable(); inputs_.set(index, value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param value The inputs to add. * @return This builder for chaining. */ public Builder addInputs(java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureInputsIsMutable(); inputs_.add(value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param values The inputs to add. * @return This builder for chaining. */ public Builder addAllInputs(java.lang.Iterable values) { ensureInputsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, inputs_); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @return This builder for chaining. */ public Builder clearInputs() { inputs_ = com.google.protobuf.LazyStringArrayList.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); ; onChanged(); return this; } /** * * *
     * List of `Input.key`s identifying files that should be used in this atom.
     * The listed `inputs` must have the same timeline.
     * 
* * repeated string inputs = 2; * * @param value The bytes of the inputs to add. * @return This builder for chaining. */ public Builder addInputsBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureInputsIsMutable(); inputs_.add(value); bitField0_ |= 0x00000002; onChanged(); return this; } private com.google.protobuf.Duration endTimeOffset_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> endTimeOffsetBuilder_; /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return Whether the endTimeOffset field is set. */ public boolean hasEndTimeOffset() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return The endTimeOffset. */ public com.google.protobuf.Duration getEndTimeOffset() { if (endTimeOffsetBuilder_ == null) { return endTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTimeOffset_; } else { return endTimeOffsetBuilder_.getMessage(); } } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public Builder setEndTimeOffset(com.google.protobuf.Duration value) { if (endTimeOffsetBuilder_ == null) { if (value == null) { throw new NullPointerException(); } endTimeOffset_ = value; } else { endTimeOffsetBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public Builder setEndTimeOffset(com.google.protobuf.Duration.Builder builderForValue) { if (endTimeOffsetBuilder_ == null) { endTimeOffset_ = builderForValue.build(); } else { endTimeOffsetBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public Builder mergeEndTimeOffset(com.google.protobuf.Duration value) { if (endTimeOffsetBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && endTimeOffset_ != null && endTimeOffset_ != com.google.protobuf.Duration.getDefaultInstance()) { getEndTimeOffsetBuilder().mergeFrom(value); } else { endTimeOffset_ = value; } } else { endTimeOffsetBuilder_.mergeFrom(value); } if (endTimeOffset_ != null) { bitField0_ |= 0x00000004; onChanged(); } return this; } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public Builder clearEndTimeOffset() { bitField0_ = (bitField0_ & ~0x00000004); endTimeOffset_ = null; if (endTimeOffsetBuilder_ != null) { endTimeOffsetBuilder_.dispose(); endTimeOffsetBuilder_ = null; } onChanged(); return this; } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public com.google.protobuf.Duration.Builder getEndTimeOffsetBuilder() { bitField0_ |= 0x00000004; onChanged(); return getEndTimeOffsetFieldBuilder().getBuilder(); } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ public com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder() { if (endTimeOffsetBuilder_ != null) { return endTimeOffsetBuilder_.getMessageOrBuilder(); } else { return endTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : endTimeOffset_; } } /** * * *
     * End time in seconds for the atom, relative to the input file timeline.
     * When `end_time_offset` is not specified, the `inputs` are used until
     * the end of the atom.
     * 
* * .google.protobuf.Duration end_time_offset = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getEndTimeOffsetFieldBuilder() { if (endTimeOffsetBuilder_ == null) { endTimeOffsetBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( getEndTimeOffset(), getParentForChildren(), isClean()); endTimeOffset_ = null; } return endTimeOffsetBuilder_; } private com.google.protobuf.Duration startTimeOffset_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> startTimeOffsetBuilder_; /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return Whether the startTimeOffset field is set. */ public boolean hasStartTimeOffset() { return ((bitField0_ & 0x00000008) != 0); } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return The startTimeOffset. */ public com.google.protobuf.Duration getStartTimeOffset() { if (startTimeOffsetBuilder_ == null) { return startTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTimeOffset_; } else { return startTimeOffsetBuilder_.getMessage(); } } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public Builder setStartTimeOffset(com.google.protobuf.Duration value) { if (startTimeOffsetBuilder_ == null) { if (value == null) { throw new NullPointerException(); } startTimeOffset_ = value; } else { startTimeOffsetBuilder_.setMessage(value); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public Builder setStartTimeOffset(com.google.protobuf.Duration.Builder builderForValue) { if (startTimeOffsetBuilder_ == null) { startTimeOffset_ = builderForValue.build(); } else { startTimeOffsetBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public Builder mergeStartTimeOffset(com.google.protobuf.Duration value) { if (startTimeOffsetBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0) && startTimeOffset_ != null && startTimeOffset_ != com.google.protobuf.Duration.getDefaultInstance()) { getStartTimeOffsetBuilder().mergeFrom(value); } else { startTimeOffset_ = value; } } else { startTimeOffsetBuilder_.mergeFrom(value); } if (startTimeOffset_ != null) { bitField0_ |= 0x00000008; onChanged(); } return this; } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public Builder clearStartTimeOffset() { bitField0_ = (bitField0_ & ~0x00000008); startTimeOffset_ = null; if (startTimeOffsetBuilder_ != null) { startTimeOffsetBuilder_.dispose(); startTimeOffsetBuilder_ = null; } onChanged(); return this; } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public com.google.protobuf.Duration.Builder getStartTimeOffsetBuilder() { bitField0_ |= 0x00000008; onChanged(); return getStartTimeOffsetFieldBuilder().getBuilder(); } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ public com.google.protobuf.DurationOrBuilder getStartTimeOffsetOrBuilder() { if (startTimeOffsetBuilder_ != null) { return startTimeOffsetBuilder_.getMessageOrBuilder(); } else { return startTimeOffset_ == null ? com.google.protobuf.Duration.getDefaultInstance() : startTimeOffset_; } } /** * * *
     * Start time in seconds for the atom, relative to the input file timeline.
     * The default is `0s`.
     * 
* * .google.protobuf.Duration start_time_offset = 4; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder> getStartTimeOffsetFieldBuilder() { if (startTimeOffsetBuilder_ == null) { startTimeOffsetBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Duration, com.google.protobuf.Duration.Builder, com.google.protobuf.DurationOrBuilder>( getStartTimeOffset(), getParentForChildren(), isClean()); startTimeOffset_ = null; } return startTimeOffsetBuilder_; } @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.cloud.video.transcoder.v1.EditAtom) } // @@protoc_insertion_point(class_scope:google.cloud.video.transcoder.v1.EditAtom) private static final com.google.cloud.video.transcoder.v1.EditAtom DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.video.transcoder.v1.EditAtom(); } public static com.google.cloud.video.transcoder.v1.EditAtom getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public EditAtom 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.cloud.video.transcoder.v1.EditAtom getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy