com.metreeca.json.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metreeca-json Show documentation
Show all versions of metreeca-json Show documentation
A shape-based JSON modelling framework.
The newest version!
/*
* Copyright © 2013-2022 Metreeca srl
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.metreeca.json;
import org.eclipse.rdf4j.model.IRI;
import java.util.*;
import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;
/**
* Ordering criterion.
*/
public final class Order {
public static Order increasing(final IRI... path) {
return new Order(false, asList(path));
}
public static Order increasing(final List path) {
return new Order(false, path);
}
public static Order decreasing(final IRI... path) {
return new Order(true, asList(path));
}
public static Order decreasing(final List path) {
return new Order(true, path);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
private final boolean inverse;
private final List path;
private Order(final boolean inverse, final List path) {
if ( path == null || path.stream().anyMatch(Objects::isNull) ) {
throw new NullPointerException("null path or path IRI");
}
this.inverse=inverse;
this.path=new ArrayList<>(path);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public boolean inverse() {
return inverse;
}
public List path() {
return unmodifiableList(path);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@Override public boolean equals(final Object object) {
return this == object || object instanceof Order
&& path.equals(((Order)object).path)
&& inverse == ((Order)object).inverse;
}
@Override public int hashCode() {
return path.hashCode()^Boolean.hashCode(inverse);
}
@Override public String toString() {
final StringBuilder builder=new StringBuilder(20*path.size());
for (final IRI IRI : path) {
if ( builder.length() > 0 ) { builder.append('/'); }
builder.append(IRI);
}
return builder.insert(0, inverse ? "-" : "+").toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy