public boolean equals()

in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/RelationshipType.java [525:555]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    RelationshipType relationshipType = (RelationshipType) o;
    return Objects.equals(this.color, relationshipType.color) &&
        Objects.equals(this.edition, relationshipType.edition) &&
        Objects.equals(this.flavor, relationshipType.flavor) &&
        Objects.equals(this.gemType, relationshipType.gemType) &&
        Objects.equals(this.golfClubFlex, relationshipType.golfClubFlex) &&
        Objects.equals(this.handOrientation, relationshipType.handOrientation) &&
        Objects.equals(this.hardwarePlatform, relationshipType.hardwarePlatform) &&
        Objects.equals(this.materialType, relationshipType.materialType) &&
        Objects.equals(this.metalType, relationshipType.metalType) &&
        Objects.equals(this.model, relationshipType.model) &&
        Objects.equals(this.operatingSystem, relationshipType.operatingSystem) &&
        Objects.equals(this.productTypeSubcategory, relationshipType.productTypeSubcategory) &&
        Objects.equals(this.ringSize, relationshipType.ringSize) &&
        Objects.equals(this.shaftMaterial, relationshipType.shaftMaterial) &&
        Objects.equals(this.scent, relationshipType.scent) &&
        Objects.equals(this.size, relationshipType.size) &&
        Objects.equals(this.sizePerPearl, relationshipType.sizePerPearl) &&
        Objects.equals(this.golfClubLoft, relationshipType.golfClubLoft) &&
        Objects.equals(this.totalDiamondWeight, relationshipType.totalDiamondWeight) &&
        Objects.equals(this.totalGemWeight, relationshipType.totalGemWeight) &&
        Objects.equals(this.packageQuantity, relationshipType.packageQuantity) &&
        Objects.equals(this.itemDimensions, relationshipType.itemDimensions);
  }