Package br.net.woodstock.rockframework.core.util

Examples of br.net.woodstock.rockframework.core.util.EqualsBuilder


  public boolean equals(final Object obj) {
    if (!(obj instanceof Identity)) {
      return false;
    }
    Identity other = (Identity) obj;
    return new EqualsBuilder().add(this.getPrivateKey(), other.getPrivateKey()).add(this.getChain(), other.getChain()).build().booleanValue();
  }
View Full Code Here


  public boolean equals(final Object obj) {
    if (!(obj instanceof Parameter)) {
      return false;
    }
    Parameter other = (Parameter) obj;
    return new EqualsBuilder().add(this.getValue(), other.getValue()).add(this.getType(), other.getType()).build().booleanValue();
  }
View Full Code Here

  public boolean equals(final Object obj) {
    if (!(obj instanceof Page)) {
      return false;
    }
    Page other = (Page) obj;
    return new EqualsBuilder().add(this.getPageNumber(), other.getPageNumber()).add(this.getResultsPerPage(), this.getResultsPerPage()).build().booleanValue();
  }
View Full Code Here

  public boolean equals(final Object obj) {
    if (!(obj instanceof AbstractEntity)) {
      return false;
    }
    AbstractEntity<T> other = (AbstractEntity<T>) obj;
    return new EqualsBuilder().add(this.getId(), other.getId()).build().booleanValue();
  }
View Full Code Here

  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();
  }
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.core.util.EqualsBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.