public boolean equals()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/schema/Meta.java [118:141]


  public boolean equals(final Object o) {
    if (o == this) return true;
    if (!(o instanceof Meta)) return false;
    final Meta other = (Meta) o;
    if (!other.canEqual((Object) this)) return false;
    final Object this$resourceType = this.getResourceType();
    final Object other$resourceType = other.getResourceType();
    if (this$resourceType == null ? other$resourceType != null : !this$resourceType.equals(other$resourceType))
      return false;
    final Object this$created = this.getCreated();
    final Object other$created = other.getCreated();
    if (this$created == null ? other$created != null : !this$created.equals(other$created)) return false;
    final Object this$lastModified = this.getLastModified();
    final Object other$lastModified = other.getLastModified();
    if (this$lastModified == null ? other$lastModified != null : !this$lastModified.equals(other$lastModified))
      return false;
    final Object this$location = this.getLocation();
    final Object other$location = other.getLocation();
    if (this$location == null ? other$location != null : !this$location.equals(other$location)) return false;
    final Object this$version = this.getVersion();
    final Object other$version = other.getVersion();
    if (this$version == null ? other$version != null : !this$version.equals(other$version)) return false;
    return true;
  }