I have class whose member is byte[] I need to put object of the class in TreeMap with key as object of this class. Following is I have written, but put and get is not working as per expectation.
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Arrays;
public class XTObject Comparable<XTObject>{
public byte[] data;
public XTObject(){
}
public XTObject(final byte[] in) {
this.data = in;
}
@Override
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
XTObject other = (XTObject) obj;
if (!Arrays.equals(data, other.data))
return false;
return true;
}
@Override
public int hashCode() {
return Arrays.hashCode(data);
}
@Override
public int compareTo(XTObject o) {
ByteBuffer left = ByteBuffer.wrap(this.data);
ByteBuffer right = ByteBuffer.wrap(o.data);
return left.compareTo(right);
}
}
Put is working fine I guess, but get is giving null pointer exception. I am new to java.
dataif you use parameter-less constructor, so data == null – dantuch Mar 19 at 7:40