public boolean equals()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/filter/AttributeComparisonExpression.java [117:133]


  public boolean equals(final Object o) {
    if (o == this) return true;
    if (!(o instanceof AttributeComparisonExpression)) return false;
    final AttributeComparisonExpression other = (AttributeComparisonExpression) o;
    final Object this$attributePath = this.getAttributePath();
    final Object other$attributePath = other.getAttributePath();
    if (this$attributePath == null ? other$attributePath != null : !this$attributePath.equals(other$attributePath))
      return false;
    final Object this$operation = this.getOperation();
    final Object other$operation = other.getOperation();
    if (this$operation == null ? other$operation != null : !this$operation.equals(other$operation)) return false;
    final Object this$compareValue = this.getCompareValue();
    final Object other$compareValue = other.getCompareValue();
    if (this$compareValue == null ? other$compareValue != null : !this$compareValue.equals(other$compareValue))
      return false;
    return true;
  }