be.ugent.rml.term.NamedNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmlmapper Show documentation
Show all versions of rmlmapper Show documentation
The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.
package be.ugent.rml.term;
public class NamedNode extends AbstractTerm {
public NamedNode(String iri) {
super(iri);
}
@Override
public String toString() {
return "<" + this.getValue() + ">";
}
@Override
public boolean equals(Object o) {
if (o instanceof NamedNode) {
return o.toString().equals(toString());
} else {
return false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy