public boolean equals()

in computer-core/src/main/java/org/apache/hugegraph/computer/core/graph/vertex/DefaultVertex.java [139:152]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof DefaultVertex)) {
            return false;
        }
        DefaultVertex other = (DefaultVertex) obj;
        return this.active == other.active &&
               Objects.equals(this.id, other.id) &&
               Objects.equals(this.value, other.value) &&
               Objects.equals(this.edges, other.edges) &&
               Objects.equals(this.properties, other.properties);
    }