return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AccuracyState other = (AccuracyState) obj;
if (errorCount == null) {
if (other.errorCount != null)
return false;
} else if (!errorCount.equals(other.errorCount))
return false;