public boolean equals(final Object obj) {
if (!(obj instanceof FilterParameter)) {
return false;
}
FilterParameter other = (FilterParameter) obj;
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();
}