public boolean equals()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/patch/PatchOperation.java [71:86]


  public boolean equals(final Object o) {
    if (o == this) return true;
    if (!(o instanceof PatchOperation)) return false;
    final PatchOperation other = (PatchOperation) o;
    if (!other.canEqual((Object) this)) 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$path = this.getPath();
    final Object other$path = other.getPath();
    if (this$path == null ? other$path != null : !this$path.equals(other$path)) return false;
    final Object this$value = this.getValue();
    final Object other$value = other.getValue();
    if (this$value == null ? other$value != null : !this$value.equals(other$value)) return false;
    return true;
  }