software.amazon.awssdk.services.elastictranscoder.model.TimeSpan Maven / Gradle / Ivy
Show all versions of elastictranscoder Show documentation
/*
* Copyright 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 software.amazon.awssdk.services.elastictranscoder.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Settings that determine when a clip begins and how long it lasts.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class TimeSpan implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField START_TIME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(TimeSpan::startTime)).setter(setter(Builder::startTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StartTime").build()).build();
private static final SdkField DURATION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(TimeSpan::duration)).setter(setter(Builder::duration))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Duration").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(START_TIME_FIELD,
DURATION_FIELD));
private static final long serialVersionUID = 1L;
private final String startTime;
private final String duration;
private TimeSpan(BuilderImpl builder) {
this.startTime = builder.startTime;
this.duration = builder.duration;
}
/**
*
* The place in the input file where you want a clip to start. The format can be either HH:mm:ss.SSS (maximum value:
* 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a
* value, Elastic Transcoder starts at the beginning of the input file.
*
*
* @return The place in the input file where you want a clip to start. The format can be either HH:mm:ss.SSS
* (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If
* you don't specify a value, Elastic Transcoder starts at the beginning of the input file.
*/
public String startTime() {
return startTime;
}
/**
*
* The duration of the clip. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths
* of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder creates an
* output file from StartTime to the end of the file.
*
*
* If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the file and
* returns a warning message.
*
*
* @return The duration of the clip. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is
* thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic
* Transcoder creates an output file from StartTime to the end of the file.
*
* If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the file
* and returns a warning message.
*/
public String duration() {
return duration;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(startTime());
hashCode = 31 * hashCode + Objects.hashCode(duration());
return hashCode;
}
@Override
public boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof TimeSpan)) {
return false;
}
TimeSpan other = (TimeSpan) obj;
return Objects.equals(startTime(), other.startTime()) && Objects.equals(duration(), other.duration());
}
/**
* 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.
*/
@Override
public String toString() {
return ToString.builder("TimeSpan").add("StartTime", startTime()).add("Duration", duration()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "StartTime":
return Optional.ofNullable(clazz.cast(startTime()));
case "Duration":
return Optional.ofNullable(clazz.cast(duration()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function
*
* If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the
* file and returns a warning message.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder duration(String duration);
}
static final class BuilderImpl implements Builder {
private String startTime;
private String duration;
private BuilderImpl() {
}
private BuilderImpl(TimeSpan model) {
startTime(model.startTime);
duration(model.duration);
}
public final String getStartTime() {
return startTime;
}
@Override
public final Builder startTime(String startTime) {
this.startTime = startTime;
return this;
}
public final void setStartTime(String startTime) {
this.startTime = startTime;
}
public final String getDuration() {
return duration;
}
@Override
public final Builder duration(String duration) {
this.duration = duration;
return this;
}
public final void setDuration(String duration) {
this.duration = duration;
}
@Override
public TimeSpan build() {
return new TimeSpan(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}