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

generated.GLISTTS Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.03.15 at 09:03:15 AM PDT 
//


package generated;

import java.math.BigInteger;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;


/**
 * 

Java class for GLIST_TS complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="GLIST_TS">
 *   <complexContent>
 *     <extension base="{}ANY">
 *       <sequence>
 *         <element name="head" type="{}TS"/>
 *         <element name="increment" type="{}PQ"/>
 *       </sequence>
 *       <attribute name="period" type="{}int" />
 *       <attribute name="denominator" type="{}int" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GLIST_TS", propOrder = { "head", "increment" }) public class GLISTTS extends ANY { @XmlElement(required = true) protected TS head; @XmlElement(required = true) protected PQ increment; @XmlAttribute(name = "period") protected BigInteger period; @XmlAttribute(name = "denominator") protected BigInteger denominator; /** * Gets the value of the head property. * * @return * possible object is * {@link TS } * */ public TS getHead() { return head; } /** * Sets the value of the head property. * * @param value * allowed object is * {@link TS } * */ public void setHead(TS value) { this.head = value; } /** * Gets the value of the increment property. * * @return * possible object is * {@link PQ } * */ public PQ getIncrement() { return increment; } /** * Sets the value of the increment property. * * @param value * allowed object is * {@link PQ } * */ public void setIncrement(PQ value) { this.increment = value; } /** * Gets the value of the period property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getPeriod() { return period; } /** * Sets the value of the period property. * * @param value * allowed object is * {@link BigInteger } * */ public void setPeriod(BigInteger value) { this.period = value; } /** * Gets the value of the denominator property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDenominator() { return denominator; } /** * Sets the value of the denominator property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDenominator(BigInteger value) { this.denominator = value; } public GLISTTS withHead(TS value) { setHead(value); return this; } public GLISTTS withIncrement(PQ value) { setIncrement(value); return this; } public GLISTTS withPeriod(BigInteger value) { setPeriod(value); return this; } public GLISTTS withDenominator(BigInteger value) { setDenominator(value); return this; } @Override public GLISTTS withNullFlavor(String... values) { if (values!= null) { for (String value: values) { getNullFlavor().add(value); } } return this; } @Override public GLISTTS withNullFlavor(Collection values) { if (values!= null) { getNullFlavor().addAll(values); } return this; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); } @Override public boolean equals(Object that) { return EqualsBuilder.reflectionEquals(this, that); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy