49 lines
822 B
Java

package com.hbm.handler;
public class ThreeInts implements Comparable {
public int x;
public int y;
public int z;
public ThreeInts(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + x;
result = prime * result + y;
result = prime * result + z;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ThreeInts other = (ThreeInts) obj;
if (x != other.x)
return false;
if (y != other.y)
return false;
if (z != other.z)
return false;
return true;
}
@Override
public int compareTo(Object o) {
return equals(o) ? 0 : 1;
}
}