com.glookast.commons.timecode.TimecodeCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-timecode Show documentation
Show all versions of commons-timecode Show documentation
XML base schemas used for interfacing with Glookast Products
package com.glookast.commons.timecode;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.io.Serializable;
import java.util.Objects;
/**
* Java class for TimecodeCollection complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TimecodeCollection">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ltc" type="{http://timecode.commons.glookast.com}Timecode" minOccurs="0"/>
* <element name="vitc" type="{http://timecode.commons.glookast.com}Timecode" minOccurs="0"/>
* <element name="tod" type="{http://timecode.commons.glookast.com}Timecode" minOccurs="0"/>
* <element name="rs422" type="{http://timecode.commons.glookast.com}Timecode" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimecodeCollection", namespace = "http://timecode.commons.glookast.com", propOrder = {
"ltc",
"vitc",
"tod",
"rs422"
})
public class TimecodeCollection implements Serializable
{
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlAdapterTimecode.class)
protected Timecode ltc;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlAdapterTimecode.class)
protected Timecode vitc;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlAdapterTimecode.class)
protected Timecode tod;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlAdapterTimecode.class)
protected Timecode rs422;
/**
* Default no-arg constructor
*/
public TimecodeCollection()
{
super();
}
/**
* Fully-initialising value constructor
*/
public TimecodeCollection(final Timecode ltc, final Timecode vitc, final Timecode tod, final Timecode rs422)
{
this.ltc = ltc;
this.vitc = vitc;
this.tod = tod;
this.rs422 = rs422;
}
/**
* Gets the value of the ltc property.
*
* @return possible object is
* {@link String }
*/
public Timecode getLtc()
{
return ltc;
}
/**
* Sets the value of the ltc property.
*
* @param value allowed object is
* {@link String }
*/
public void setLtc(Timecode value)
{
this.ltc = value;
}
/**
* Gets the value of the vitc property.
*
* @return possible object is
* {@link String }
*/
public Timecode getVitc()
{
return vitc;
}
/**
* Sets the value of the vitc property.
*
* @param value allowed object is
* {@link String }
*/
public void setVitc(Timecode value)
{
this.vitc = value;
}
/**
* Gets the value of the tod property.
*
* @return possible object is
* {@link String }
*/
public Timecode getTod()
{
return tod;
}
/**
* Sets the value of the tod property.
*
* @param value allowed object is
* {@link String }
*/
public void setTod(Timecode value)
{
this.tod = value;
}
/**
* Gets the value of the rs422 property.
*
* @return possible object is
* {@link String }
*/
public Timecode getRs422()
{
return rs422;
}
/**
* Sets the value of the rs422 property.
*
* @param value allowed object is
* {@link String }
*/
public void setRs422(Timecode value)
{
this.rs422 = value;
}
@Override
public String toString()
{
return "TimecodeCollection{" +
"ltc=" + ltc +
", vitc=" + vitc +
", tod=" + tod +
", rs422=" + rs422 +
'}';
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TimecodeCollection that = (TimecodeCollection) o;
return Objects.equals(ltc, that.ltc) &&
Objects.equals(vitc, that.vitc) &&
Objects.equals(tod, that.tod) &&
Objects.equals(rs422, that.rs422);
}
@Override
public int hashCode()
{
return Objects.hash(ltc, vitc, tod, rs422);
}
}