org.eclipse.rdf4j.model.base.AbstractNamespace Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* 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.model.base;
import java.util.Comparator;
import java.util.Objects;
import org.eclipse.rdf4j.model.Namespace;
/**
* Base class for {@link Namespace}, offering common functionality.
*
* @author Alessandro Bollini
* @since 3.5.0
*/
public abstract class AbstractNamespace implements Namespace {
private static final long serialVersionUID = 1915019376191661835L;
/**
* Sorts namespaces first by {@linkplain #getPrefix() prefix} and then by {@linkplain #getName()} () name};
* {@code null} values are sorted before other values.
*/
private static final Comparator COMPARATOR = Comparator.nullsFirst(
Comparator.comparing(Namespace::getPrefix).thenComparing(Namespace::getName)
);
@Override
public int compareTo(Namespace o) {
return COMPARATOR.compare(this, o);
}
@Override
public boolean equals(Object object) {
return this == object || object instanceof Namespace
&& getPrefix().equals(((Namespace) object).getPrefix())
&& getName().equals(((Namespace) object).getName());
}
@Override
public int hashCode() { // TODO inline Objects.hash() to avoid array creation?
return Objects.hash(getPrefix(), getName());
}
@Override
public String toString() {
return getPrefix() + " :: " + getName();
}
}