Methods Summary |
---|
public synchronized boolean | equals(java.lang.Object obj)
if (!(obj instanceof QueryType)) return false;
QueryType other = (QueryType) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.seachString==null && other.getSeachString()==null) ||
(this.seachString!=null &&
this.seachString.equals(other.getSeachString()))) &&
this.threshold == other.getThreshold();
__equalsCalc = null;
return _equals;
|
public static org.apache.axis.encoding.Deserializer | getDeserializer(java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType)Get Custom Deserializer
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
|
public java.lang.String | getSeachString()
return seachString;
|
public static org.apache.axis.encoding.Serializer | getSerializer(java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType)Get Custom Serializer
return
new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
|
public float | getThreshold()
return threshold;
|
public static org.apache.axis.description.TypeDesc | getTypeDesc()Return type metadata object
typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.halloway.net/SiteSearch", "queryType"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("seachString");
elemField.setXmlName(new javax.xml.namespace.QName("", "seachString"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("threshold");
elemField.setXmlName(new javax.xml.namespace.QName("", "threshold"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "float"));
typeDesc.addFieldDesc(elemField);
return typeDesc;
|
public synchronized int | hashCode()
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getSeachString() != null) {
_hashCode += getSeachString().hashCode();
}
_hashCode += new Float(getThreshold()).hashCode();
__hashCodeCalc = false;
return _hashCode;
|
public void | setSeachString(java.lang.String seachString)
this.seachString = seachString;
|
public void | setThreshold(float threshold)
this.threshold = threshold;
|