blob: 40aafc0ca44cd0ac8bc0ff9264c88a0e35c1c6dd [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
package com.gemstone.gemfire.pdx;
import java.io.IOException;
import com.gemstone.gemfire.DataSerializable;
public class DSInsidePdx implements PdxSerializable {
private String myString1;
private long myLong;
private DataSerializable myDS;
private String myString2;
private float myFloat;
public DSInsidePdx() {
}
public DSInsidePdx(String str1, long myLong, DataSerializable myDS, String str2, float myFloat) {
this.myString1 = str1;
this.myLong = myLong;
this.myDS = myDS;
this.myString2 = str2;
this.myFloat = myFloat;
}
public void toData(PdxWriter out) {
out.writeString("myString1", this.myString1);
out.writeLong("myLong", this.myLong);
out.writeObject("myDS", this.myDS);
out.writeString("myString2", this.myString2);
out.writeFloat("myFloat", this.myFloat);
}
public void fromData(PdxReader in){
this.myString1 = in.readString("myString1");
this.myLong = in.readLong("myLong");
this.myDS = (DataSerializable)in.readObject("myDS");
this.myString2 = in.readString("myString2");
this.myFloat = in.readFloat("myFloat");
}
@Override
public String toString() {
return "DSInsidePdx [myString1=" + myString1 + ", myLong=" + myLong
+ ", myDS=" + myDS + ", myString2=" + myString2 + ", myFloat="
+ myFloat + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((myDS == null) ? 0 : myDS.hashCode());
result = prime * result + Float.floatToIntBits(myFloat);
result = prime * result + (int)(myLong ^ (myLong >>> 32));
result = prime * result + ((myString1 == null) ? 0 : myString1.hashCode());
result = prime * result + ((myString2 == null) ? 0 : myString2.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DSInsidePdx other = (DSInsidePdx)obj;
if (myDS == null) {
if (other.myDS != null)
return false;
}
else if (!myDS.equals(other.myDS))
return false;
if (Float.floatToIntBits(myFloat) != Float.floatToIntBits(other.myFloat))
return false;
if (myLong != other.myLong)
return false;
if (myString1 == null) {
if (other.myString1 != null)
return false;
}
else if (!myString1.equals(other.myString1))
return false;
if (myString2 == null) {
if (other.myString2 != null)
return false;
}
else if (!myString2.equals(other.myString2))
return false;
return true;
}
}