/** * DataPoint.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. */ package com.amazonaws.mturk.requester; public class DataPoint implements java.io.Serializable { private java.util.Calendar date; private java.lang.Long longValue; private java.lang.Double doubleValue; public DataPoint() { } public DataPoint( java.util.Calendar date, java.lang.Long longValue, java.lang.Double doubleValue) { this.date = date; this.longValue = longValue; this.doubleValue = doubleValue; } /** * Gets the date value for this DataPoint. * * @return date */ public java.util.Calendar getDate() { return date; } /** * Sets the date value for this DataPoint. * * @param date */ public void setDate(java.util.Calendar date) { this.date = date; } /** * Gets the longValue value for this DataPoint. * * @return longValue */ public java.lang.Long getLongValue() { return longValue; } /** * Sets the longValue value for this DataPoint. * * @param longValue */ public void setLongValue(java.lang.Long longValue) { this.longValue = longValue; } /** * Gets the doubleValue value for this DataPoint. * * @return doubleValue */ public java.lang.Double getDoubleValue() { return doubleValue; } /** * Sets the doubleValue value for this DataPoint. * * @param doubleValue */ public void setDoubleValue(java.lang.Double doubleValue) { this.doubleValue = doubleValue; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof DataPoint)) return false; DataPoint other = (DataPoint) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.date==null && other.getDate()==null) || (this.date!=null && this.date.equals(other.getDate()))) && ((this.longValue==null && other.getLongValue()==null) || (this.longValue!=null && this.longValue.equals(other.getLongValue()))) && ((this.doubleValue==null && other.getDoubleValue()==null) || (this.doubleValue!=null && this.doubleValue.equals(other.getDoubleValue()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getDate() != null) { _hashCode += getDate().hashCode(); } if (getLongValue() != null) { _hashCode += getLongValue().hashCode(); } if (getDoubleValue() != null) { _hashCode += getDoubleValue().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(DataPoint.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://requester.mturk.amazonaws.com/doc/2007-06-21", "DataPoint")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("date"); elemField.setXmlName(new javax.xml.namespace.QName("http://requester.mturk.amazonaws.com/doc/2007-06-21", "Date")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("longValue"); elemField.setXmlName(new javax.xml.namespace.QName("http://requester.mturk.amazonaws.com/doc/2007-06-21", "LongValue")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "long")); elemField.setMinOccurs(0); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("doubleValue"); elemField.setXmlName(new javax.xml.namespace.QName("http://requester.mturk.amazonaws.com/doc/2007-06-21", "DoubleValue")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double")); elemField.setMinOccurs(0); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } }