com.amazonaws.services.mediaconvert.model.HlsCaptionLanguageMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-mediaconvert Show documentation
Show all versions of aws-java-sdk-mediaconvert Show documentation
The AWS Java SDK for AWS Elemental MediaConvert module holds the client classes that are used for communicating with AWS Elemental MediaConvert Service
/*
* Copyright 2019-2024 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.mediaconvert.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
* Caption Language Mapping
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class HlsCaptionLanguageMapping implements Serializable, Cloneable, StructuredPojo {
/** Caption channel. */
private Integer captionChannel;
/** Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language code */
private String customLanguageCode;
/**
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
*/
private String languageCode;
/** Caption language description. */
private String languageDescription;
/**
* Caption channel.
*
* @param captionChannel
* Caption channel.
*/
public void setCaptionChannel(Integer captionChannel) {
this.captionChannel = captionChannel;
}
/**
* Caption channel.
*
* @return Caption channel.
*/
public Integer getCaptionChannel() {
return this.captionChannel;
}
/**
* Caption channel.
*
* @param captionChannel
* Caption channel.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HlsCaptionLanguageMapping withCaptionChannel(Integer captionChannel) {
setCaptionChannel(captionChannel);
return this;
}
/**
* Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language code
*
* @param customLanguageCode
* Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language
* code
*/
public void setCustomLanguageCode(String customLanguageCode) {
this.customLanguageCode = customLanguageCode;
}
/**
* Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language code
*
* @return Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language
* code
*/
public String getCustomLanguageCode() {
return this.customLanguageCode;
}
/**
* Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language code
*
* @param customLanguageCode
* Specify the language for this captions channel, using the ISO 639-2 or ISO 639-3 three-letter language
* code
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HlsCaptionLanguageMapping withCustomLanguageCode(String customLanguageCode) {
setCustomLanguageCode(customLanguageCode);
return this;
}
/**
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
*
* @param languageCode
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
* @see LanguageCode
*/
public void setLanguageCode(String languageCode) {
this.languageCode = languageCode;
}
/**
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
*
* @return Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
* @see LanguageCode
*/
public String getLanguageCode() {
return this.languageCode;
}
/**
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
*
* @param languageCode
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LanguageCode
*/
public HlsCaptionLanguageMapping withLanguageCode(String languageCode) {
setLanguageCode(languageCode);
return this;
}
/**
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
*
* @param languageCode
* Specify the language, using the ISO 639-2 three-letter code listed at
* https://www.loc.gov/standards/iso639-2/php/code_list.php.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LanguageCode
*/
public HlsCaptionLanguageMapping withLanguageCode(LanguageCode languageCode) {
this.languageCode = languageCode.toString();
return this;
}
/**
* Caption language description.
*
* @param languageDescription
* Caption language description.
*/
public void setLanguageDescription(String languageDescription) {
this.languageDescription = languageDescription;
}
/**
* Caption language description.
*
* @return Caption language description.
*/
public String getLanguageDescription() {
return this.languageDescription;
}
/**
* Caption language description.
*
* @param languageDescription
* Caption language description.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HlsCaptionLanguageMapping withLanguageDescription(String languageDescription) {
setLanguageDescription(languageDescription);
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 (getCaptionChannel() != null)
sb.append("CaptionChannel: ").append(getCaptionChannel()).append(",");
if (getCustomLanguageCode() != null)
sb.append("CustomLanguageCode: ").append(getCustomLanguageCode()).append(",");
if (getLanguageCode() != null)
sb.append("LanguageCode: ").append(getLanguageCode()).append(",");
if (getLanguageDescription() != null)
sb.append("LanguageDescription: ").append(getLanguageDescription());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof HlsCaptionLanguageMapping == false)
return false;
HlsCaptionLanguageMapping other = (HlsCaptionLanguageMapping) obj;
if (other.getCaptionChannel() == null ^ this.getCaptionChannel() == null)
return false;
if (other.getCaptionChannel() != null && other.getCaptionChannel().equals(this.getCaptionChannel()) == false)
return false;
if (other.getCustomLanguageCode() == null ^ this.getCustomLanguageCode() == null)
return false;
if (other.getCustomLanguageCode() != null && other.getCustomLanguageCode().equals(this.getCustomLanguageCode()) == false)
return false;
if (other.getLanguageCode() == null ^ this.getLanguageCode() == null)
return false;
if (other.getLanguageCode() != null && other.getLanguageCode().equals(this.getLanguageCode()) == false)
return false;
if (other.getLanguageDescription() == null ^ this.getLanguageDescription() == null)
return false;
if (other.getLanguageDescription() != null && other.getLanguageDescription().equals(this.getLanguageDescription()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCaptionChannel() == null) ? 0 : getCaptionChannel().hashCode());
hashCode = prime * hashCode + ((getCustomLanguageCode() == null) ? 0 : getCustomLanguageCode().hashCode());
hashCode = prime * hashCode + ((getLanguageCode() == null) ? 0 : getLanguageCode().hashCode());
hashCode = prime * hashCode + ((getLanguageDescription() == null) ? 0 : getLanguageDescription().hashCode());
return hashCode;
}
@Override
public HlsCaptionLanguageMapping clone() {
try {
return (HlsCaptionLanguageMapping) 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.mediaconvert.model.transform.HlsCaptionLanguageMappingMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}