public boolean equals()

in rest-json/src/main/java/org/acme/rest/json/Legume.java [56:64]


    public boolean equals(Object obj) {
        if (!(obj instanceof Legume)) {
            return false;
        }

        Legume other = (Legume) obj;

        return Objects.equals(other.name, this.name);
    }