public boolean equals()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/extension/EnterpriseExtension.java [196:212]


    public boolean equals(final Object o) {
      if (o == this) return true;
      if (!(o instanceof Manager)) return false;
      final Manager other = (Manager) o;
      if (!other.canEqual((Object) this)) 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;
      final Object this$ref = this.getRef();
      final Object other$ref = other.getRef();
      if (this$ref == null ? other$ref != null : !this$ref.equals(other$ref)) return false;
      final Object this$displayName = this.getDisplayName();
      final Object other$displayName = other.getDisplayName();
      if (this$displayName == null ? other$displayName != null : !this$displayName.equals(other$displayName))
        return false;
      return true;
    }