return new EqualsBuilder().add(this.getIndex(), other.getIndex()).add(this.getName(), other.getName()).add(this.getValue(), other.getValue()).add(this.getType(), other.getType()).build().booleanValue();
}
@Override
public String toString() {
return new ToStringBuilder(this.getClass()).add("index", this.getIndex()).add("name", this.getName()).add("value", this.getValue()).add("type", this.getType()).build();
}