Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2016 Daniel Skogquist Åborg
*
* 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 org.d2ab.util;
import java.io.Serializable;
import java.util.*;
import java.util.Map.Entry;
import java.util.function.BiFunction;
import java.util.function.BiPredicate;
import java.util.function.Function;
import java.util.function.Predicate;
import static java.util.Comparator.comparing;
import static org.d2ab.collection.Comparators.naturalOrderNullsFirst;
/**
* A general purpose pair of two objects, "{@code left}" and "{@code right}". Pairs implement {@link Map.Entry} where
* the key is the "left" side and the value is the "right" side.
*
* @param the type of the "left" side of the pair.
* @param the type of the "right" side of the pair.
*/
public abstract class Pair implements Entry, Comparable>, Cloneable, Serializable {
private static final Comparator COMPARATOR =
comparing((Function) Pair::getLeft, naturalOrderNullsFirst()).thenComparing(
(Function) Pair::getRight, naturalOrderNullsFirst());
/**
* @return a {@code Pair} of the two objects given.
*/
public static Pair of(L left, R right) {
return new Pair() {
@Override
public L getLeft() {
return left;
}
@Override
public R getRight() {
return right;
}
};
}
/**
* @return a {@code Pair} that delegates to the given {@link Map.Entry}, key being left and value being right.
*/
public static Pair from(Entry extends K, ? extends V> entry) {
return new Pair() {
@Override
public K getLeft() {
return entry.getKey();
}
@Override
public V getRight() {
return entry.getValue();
}
};
}
/**
* @return a {@code Pair} created from the key and value of the given entry, key being left and value being right.
*/
public static Pair copy(Entry extends K, ? extends V> entry) {
return of(entry.getKey(), entry.getValue());
}
/**
* @return a unary {@code Pair} where both objects are the same.
*/
public static Pair unary(T item) {
return new Pair() {
@Override
public T getLeft() {
return item;
}
@Override
public T getRight() {
return item;
}
};
}
/**
* @return the "left" component of the {@code Pair}.
*/
public abstract L getLeft();
/**
* @return the "right" component of the {@code Pair}.
*/
public abstract R getRight();
/**
* @return the "left" component of the {@code Pair}.
*/
@Override
public L getKey() {
return getLeft();
}
/**
* @return the "right" component of the {@code Pair}.
*/
@Override
public R getValue() {
return getRight();
}
/**
* This operation is not supported and throws {@link UnsupportedOperationException}.
*/
@Override
public R setValue(R value) {
throw new UnsupportedOperationException();
}
/**
* @return a {@code Pair} with the "left" and "right" components of this {@code Pair} swapped.
*/
public Pair swap() {
return new Pair() {
@Override
public R getLeft() {
return Pair.this.getRight();
}
@Override
public L getRight() {
return Pair.this.getLeft();
}
};
}
/**
* @return a {@code Pair} where the "left" component is replaced with the given value.
*/
public Pair withLeft(LL left) {
return new Pair() {
@Override
public LL getLeft() {
return left;
}
@Override
public R getRight() {
return Pair.this.getRight();
}
};
}
/**
* @return a {@code Pair} where the "right" component is replaced with the given value.
*/
public Pair withRight(RR right) {
return new Pair() {
@Override
public L getLeft() {
return Pair.this.getLeft();
}
@Override
public RR getRight() {
return right;
}
};
}
/**
* @return a {@code Pair} where the "left" component is shifted to the "right" component and replaced with the
* given
* value.
*/
public Pair shiftRight(LL replacement) {
return new Pair() {
@Override
public LL getLeft() {
return replacement;
}
@Override
public L getRight() {
return Pair.this.getLeft();
}
};
}
/**
* @return a {@code Pair} where the "right" component is shifted to the "left" component and replaced with the
* given
* value.
*/
public Pair shiftLeft(RR replacement) {
return new Pair() {
@Override
public R getLeft() {
return Pair.this.getRight();
}
@Override
public RR getRight() {
return replacement;
}
};
}
/**
* @return a {@code Pair} mapped from this {@code Pair} using the given mappers.
*/
public Pair map(Function super L, ? extends LL> leftMapper,
Function super R, ? extends RR> rightMapper) {
return new Pair() {
@Override
public LL getLeft() {
return leftMapper.apply(Pair.this.getLeft());
}
@Override
public RR getRight() {
return rightMapper.apply(Pair.this.getRight());
}
};
}
/**
* @return a {@code Pair} mapped from this {@code Pair} using the given mapper.
*/
public Pair map(BiFunction super L, ? super R, ? extends Pair> mapper) {
return mapper.apply(getLeft(), getRight());
}
/**
* @return a the result of applying the given {@link BiFunction} to the "left" and "right" components of this
* {@code
* Pair}.
*/
public T apply(BiFunction super L, ? super R, ? extends T> function) {
return function.apply(getLeft(), getRight());
}
/**
* @return the result of testing the given {@link Predicate}s on the "left" and "right" components of this {@code
* Pair}.
*/
public boolean test(Predicate super L> leftPredicate, Predicate super R> rightPredicate) {
return leftPredicate.test(getLeft()) && rightPredicate.test(getRight());
}
/**
* @return the result of testing the given {@link BiPredicate}s on the "left" and "right" components of this {@code
* Pair}.
*/
public boolean test(BiPredicate super L, ? super R> predicate) {
return predicate.test(getLeft(), getRight());
}
public Map put(Map map) {
map.put(getLeft(), getRight());
return map;
}
/**
* @return an iterator over the components of this {@code Pair}, containing exactly two elements.
*/
public Iterator iterator() {
return new PairIterator<>();
}
@Override
public int hashCode() {
int result = (getLeft() != null) ? getLeft().hashCode() : 0;
result = (31 * result) + ((getRight() != null) ? getRight().hashCode() : 0);
return result;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (!(o instanceof Pair))
return false;
Pair, ?> that = (Pair, ?>) o;
return Objects.equals(getLeft(), that.getLeft()) && Objects.equals(getRight(), that.getRight());
}
@Override
public String toString() {
return "(" + format(getLeft()) + ", " + format(getRight()) + ')';
}
private static String format(Object o) {
String value = String.valueOf(o);
if (o instanceof String)
return '"' + value + '"';
else if (o instanceof Character)
return '\'' + value + '\'';
else if (o instanceof Long)
return value + 'L';
else
return value;
}
@SuppressWarnings({"unchecked", "MethodDoesntCallSuperMethod"})
@Override
public Pair clone() {
return Pair.of(getLeft(), getRight()); // To ensure that references to mutable Map.Entry aren't copied
}
@Override
public int compareTo(Pair that) {
return COMPARATOR.compare(this, that);
}
public static Comparator super Pair extends L, ? extends R>> comparator() {
return COMPARATOR;
}
private class PairIterator implements Iterator {
int index;
@Override
public boolean hasNext() {
return index < 2;
}
@SuppressWarnings("unchecked")
@Override
public T next() {
if (!hasNext())
throw new NoSuchElementException();
if (++index == 1)
return (T) getLeft();
else
return (T) getRight();
}
}
}