EqualsConstraintComponent.java
/*******************************************************************************
* Copyright (c) 2020 Eclipse RDF4J contributors.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents;
import java.util.List;
import java.util.Set;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.Literal;
import org.eclipse.rdf4j.model.Model;
import org.eclipse.rdf4j.model.Resource;
import org.eclipse.rdf4j.model.vocabulary.SHACL;
import org.eclipse.rdf4j.sail.shacl.SourceConstraintComponent;
public class EqualsConstraintComponent extends AbstractConstraintComponent {
private final IRI predicate;
public EqualsConstraintComponent(IRI predicate) {
this.predicate = predicate;
}
@Override
public void toModel(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) {
model.add(subject, SHACL.EQUALS, this.predicate);
}
@Override
public SourceConstraintComponent getConstraintComponent() {
return SourceConstraintComponent.EqualsConstraintComponent;
}
@Override
public ConstraintComponent deepClone() {
return new EqualsConstraintComponent(predicate);
}
@Override
public List<Literal> getDefaultMessage() {
return List.of();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EqualsConstraintComponent that = (EqualsConstraintComponent) o;
return predicate.equals(that.predicate);
}
@Override
public int hashCode() {
return predicate.hashCode() + "EqualsConstraintComponent".hashCode();
}
}