// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.08.02 at 09:23:15 PM EDT // package net.di2e.jaxb.cdr.describe.cc; import java.io.Serializable; import javax.validation.constraints.NotNull; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import org.jvnet.jaxb2_commons.lang.CopyStrategy2; import org.jvnet.jaxb2_commons.lang.CopyTo2; import org.jvnet.jaxb2_commons.lang.Equals2; import org.jvnet.jaxb2_commons.lang.EqualsStrategy2; import org.jvnet.jaxb2_commons.lang.HashCode2; import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2; import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy; import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy; import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy; import org.jvnet.jaxb2_commons.lang.JAXBMergeStrategy; import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy; import org.jvnet.jaxb2_commons.lang.MergeFrom2; import org.jvnet.jaxb2_commons.lang.MergeStrategy2; import org.jvnet.jaxb2_commons.lang.ToString2; import org.jvnet.jaxb2_commons.lang.ToStringStrategy2; import org.jvnet.jaxb2_commons.locator.ObjectLocator; import org.jvnet.jaxb2_commons.locator.util.LocatorUtils; /** * <p>Java class for RecordRateType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RecordRateType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>int"> * <attribute name="frequency" use="required" type="{urn:cdr-ex:describe:cc:1.0}ChangeFrequencyValuesType" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RecordRateType", propOrder = { "value" }) public class RecordRateType implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { private final static long serialVersionUID = 1L; @XmlValue protected int value; @XmlAttribute(name = "frequency", required = true) @NotNull(message = "RecordRateType.frequency {javax.validation.constraints.NotNull.message}") protected String frequency; /** * Gets the value of the value property. * */ public int getValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(int value) { this.value = value; } public boolean isSetValue() { return true; } /** * Gets the value of the frequency property. * * @return * possible object is * {@link String } * */ public String getFrequency() { return frequency; } /** * Sets the value of the frequency property. * * @param value * allowed object is * {@link String } * */ public void setFrequency(String value) { this.frequency = value; } public boolean isSetFrequency() { return (this.frequency!= null); } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { { int theValue; theValue = this.getValue(); strategy.appendField(locator, this, "value", buffer, theValue, true); } { String theFrequency; theFrequency = this.getFrequency(); strategy.appendField(locator, this, "frequency", buffer, theFrequency, this.isSetFrequency()); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } final RecordRateType that = ((RecordRateType) object); { int lhsValue; lhsValue = this.getValue(); int rhsValue; rhsValue = that.getValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue, true, true)) { return false; } } { String lhsFrequency; lhsFrequency = this.getFrequency(); String rhsFrequency; rhsFrequency = that.getFrequency(); if (!strategy.equals(LocatorUtils.property(thisLocator, "frequency", lhsFrequency), LocatorUtils.property(thatLocator, "frequency", rhsFrequency), lhsFrequency, rhsFrequency, this.isSetFrequency(), that.isSetFrequency())) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { int theValue; theValue = this.getValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue, true); } { String theFrequency; theFrequency = this.getFrequency(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "frequency", theFrequency), currentHashCode, theFrequency, this.isSetFrequency()); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); if (draftCopy instanceof RecordRateType) { final RecordRateType copy = ((RecordRateType) draftCopy); { Boolean valueShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, true); if (valueShouldBeCopiedAndSet == Boolean.TRUE) { int sourceValue; sourceValue = this.getValue(); int copyValue = strategy.copy(LocatorUtils.property(locator, "value", sourceValue), sourceValue, true); copy.setValue(copyValue); } else { if (valueShouldBeCopiedAndSet == Boolean.FALSE) { } } } { Boolean frequencyShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetFrequency()); if (frequencyShouldBeCopiedAndSet == Boolean.TRUE) { String sourceFrequency; sourceFrequency = this.getFrequency(); String copyFrequency = ((String) strategy.copy(LocatorUtils.property(locator, "frequency", sourceFrequency), sourceFrequency, this.isSetFrequency())); copy.setFrequency(copyFrequency); } else { if (frequencyShouldBeCopiedAndSet == Boolean.FALSE) { copy.frequency = null; } } } } return draftCopy; } public Object createNewInstance() { return new RecordRateType(); } public void mergeFrom(Object left, Object right) { final MergeStrategy2 strategy = JAXBMergeStrategy.INSTANCE; mergeFrom(null, null, left, right, strategy); } public void mergeFrom(ObjectLocator leftLocator, ObjectLocator rightLocator, Object left, Object right, MergeStrategy2 strategy) { if (right instanceof RecordRateType) { final RecordRateType target = this; final RecordRateType leftObject = ((RecordRateType) left); final RecordRateType rightObject = ((RecordRateType) right); { Boolean valueShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, true, true); if (valueShouldBeMergedAndSet == Boolean.TRUE) { int lhsValue; lhsValue = leftObject.getValue(); int rhsValue; rhsValue = rightObject.getValue(); int mergedValue = ((int) strategy.merge(LocatorUtils.property(leftLocator, "value", lhsValue), LocatorUtils.property(rightLocator, "value", rhsValue), lhsValue, rhsValue, true, true)); target.setValue(mergedValue); } else { if (valueShouldBeMergedAndSet == Boolean.FALSE) { } } } { Boolean frequencyShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetFrequency(), rightObject.isSetFrequency()); if (frequencyShouldBeMergedAndSet == Boolean.TRUE) { String lhsFrequency; lhsFrequency = leftObject.getFrequency(); String rhsFrequency; rhsFrequency = rightObject.getFrequency(); String mergedFrequency = ((String) strategy.merge(LocatorUtils.property(leftLocator, "frequency", lhsFrequency), LocatorUtils.property(rightLocator, "frequency", rhsFrequency), lhsFrequency, rhsFrequency, leftObject.isSetFrequency(), rightObject.isSetFrequency())); target.setFrequency(mergedFrequency); } else { if (frequencyShouldBeMergedAndSet == Boolean.FALSE) { target.frequency = null; } } } } } }