return true;
}
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_max = true && (isSetMax());
builder.append(present_max);
if (present_max)
builder.append(max);
boolean present_min = true && (isSetMin());
builder.append(present_min);
if (present_min)
builder.append(min);
boolean present_null_count = true && (isSetNull_count());
builder.append(present_null_count);
if (present_null_count)
builder.append(null_count);
boolean present_distinct_count = true && (isSetDistinct_count());
builder.append(present_distinct_count);
if (present_distinct_count)
builder.append(distinct_count);
return builder.toHashCode();
}