/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ package com.amazonaws.services.elastictranscoder.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The captions to be created, if any. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InputCaptions implements Serializable, Cloneable, StructuredPojo { /** *

* A policy that determines how Elastic Transcoder handles the existence of multiple captions. *

* *

* MergePolicy cannot be null. *

*/ private String mergePolicy; /** *

* Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, * leave CaptionSources blank. *

*/ private com.amazonaws.internal.SdkInternalList captionSources; /** *

* A policy that determines how Elastic Transcoder handles the existence of multiple captions. *

* *

* MergePolicy cannot be null. *

* * @param mergePolicy * A policy that determines how Elastic Transcoder handles the existence of multiple captions.

* *

* MergePolicy cannot be null. */ public void setMergePolicy(String mergePolicy) { this.mergePolicy = mergePolicy; } /** *

* A policy that determines how Elastic Transcoder handles the existence of multiple captions. *

* *

* MergePolicy cannot be null. *

* * @return A policy that determines how Elastic Transcoder handles the existence of multiple captions.

* *

* MergePolicy cannot be null. */ public String getMergePolicy() { return this.mergePolicy; } /** *

* A policy that determines how Elastic Transcoder handles the existence of multiple captions. *

* *

* MergePolicy cannot be null. *

* * @param mergePolicy * A policy that determines how Elastic Transcoder handles the existence of multiple captions.

* *

* MergePolicy cannot be null. * @return Returns a reference to this object so that method calls can be chained together. */ public InputCaptions withMergePolicy(String mergePolicy) { setMergePolicy(mergePolicy); return this; } /** *

* Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, * leave CaptionSources blank. *

* * @return Source files for the input sidecar captions used during the transcoding process. To omit all sidecar * captions, leave CaptionSources blank. */ public java.util.List getCaptionSources() { if (captionSources == null) { captionSources = new com.amazonaws.internal.SdkInternalList(); } return captionSources; } /** *

* Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, * leave CaptionSources blank. *

* * @param captionSources * Source files for the input sidecar captions used during the transcoding process. To omit all sidecar * captions, leave CaptionSources blank. */ public void setCaptionSources(java.util.Collection captionSources) { if (captionSources == null) { this.captionSources = null; return; } this.captionSources = new com.amazonaws.internal.SdkInternalList(captionSources); } /** *

* Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, * leave CaptionSources blank. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setCaptionSources(java.util.Collection)} or {@link #withCaptionSources(java.util.Collection)} if you want * to override the existing values. *

* * @param captionSources * Source files for the input sidecar captions used during the transcoding process. To omit all sidecar * captions, leave CaptionSources blank. * @return Returns a reference to this object so that method calls can be chained together. */ public InputCaptions withCaptionSources(CaptionSource... captionSources) { if (this.captionSources == null) { setCaptionSources(new com.amazonaws.internal.SdkInternalList(captionSources.length)); } for (CaptionSource ele : captionSources) { this.captionSources.add(ele); } return this; } /** *

* Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, * leave CaptionSources blank. *

* * @param captionSources * Source files for the input sidecar captions used during the transcoding process. To omit all sidecar * captions, leave CaptionSources blank. * @return Returns a reference to this object so that method calls can be chained together. */ public InputCaptions withCaptionSources(java.util.Collection captionSources) { setCaptionSources(captionSources); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getMergePolicy() != null) sb.append("MergePolicy: ").append(getMergePolicy()).append(","); if (getCaptionSources() != null) sb.append("CaptionSources: ").append(getCaptionSources()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InputCaptions == false) return false; InputCaptions other = (InputCaptions) obj; if (other.getMergePolicy() == null ^ this.getMergePolicy() == null) return false; if (other.getMergePolicy() != null && other.getMergePolicy().equals(this.getMergePolicy()) == false) return false; if (other.getCaptionSources() == null ^ this.getCaptionSources() == null) return false; if (other.getCaptionSources() != null && other.getCaptionSources().equals(this.getCaptionSources()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMergePolicy() == null) ? 0 : getMergePolicy().hashCode()); hashCode = prime * hashCode + ((getCaptionSources() == null) ? 0 : getCaptionSources().hashCode()); return hashCode; } @Override public InputCaptions clone() { try { return (InputCaptions) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.elastictranscoder.model.transform.InputCaptionsMarshaller.getInstance().marshall(this, protocolMarshaller); } }