net.mintern.primitive.pair.ObjDoublePair Maven / Gradle / Ivy
Show all versions of primitive-pairs Show documentation
/*
* Derived from code that was licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with Apache Commons Lang 3 for
* additional information regarding copyright ownership.
*
* Brandon Mintern and the ASF license this file to You 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 net.mintern.primitive.pair;
import java.util.Objects;
import org.apache.commons.lang3.builder.CompareToBuilder;
/**
* A pair modeled after {@link org.apache.commons.lang3.tuple.Pair} that consists of an
* {@code Object} and a {@code double} element that allows users to avoid {@code Double} boxing. It
* refers to the elements as 'left' and 'right'.
*
* Subclass implementations may be mutable or immutable. However, there is no restriction on the
* type of the left objects that may be stored. If mutable objects are stored in the pair, then the
* pair itself effectively becomes mutable.
*
* @param the left element type
* @author Brandon Mintern
*/
public abstract class ObjDoublePair implements PrimitivePair, Comparable> {
private static final long serialVersionUID = 1;
/**
* Obtains an immutable pair of the given {@code Object} and {@code double} values.
*
* @param the left element type
* @param left the left element, may be null
* @param right the right element
* @return a pair formed from the two parameters, not null
*/
public static ObjDoublePair of(L left, double right) {
return ImmutableObjDoublePair.of(left, right);
}
/**
* Gets the left element from this pair.
*
* @return the left element, may be null
*/
public abstract L getLeft();
/**
* Gets the right element from this pair.
*
* @return the right element
*/
public abstract double getRight();
/**
* Compares the pair based on the left element followed by the right element. The left element
* must be {@link Comparable}.
*
* @param other the other pair, not null
* @return negative if this is less, zero if equal, positive if greater
*/
@Override
public int compareTo(ObjDoublePair other) {
return new CompareToBuilder().append(getLeft(), other.getLeft())
.append(getRight(), other.getRight()).toComparison();
}
/**
* Compares this pair to another based on the two elements.
*
* @param obj the object to compare to, null returns false
* @return true if the elements of the pair are equal
*/
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof ObjDoublePair>) {
ObjDoublePair> o = (ObjDoublePair>) obj;
return getRight() == o.getRight() && Objects.equals(getLeft(), o.getLeft());
}
return false;
}
/**
* Returns a hash code that follows the definition in {@link java.util.Map.Entry#hashCode()}.
*
* @return the hash code
* @see Objects#hashCode(Object)
* @see Double#hashCode(double)
*/
@Override
public int hashCode() {
return Objects.hashCode(getLeft()) ^ Double.hashCode(getRight());
}
/**
* Returns a String representation of this pair using the format {@code ($left,$right)}.
*
* @return a string describing this object, not null
*/
@Override
public String toString() {
return "(" + getLeft() + "," + getRight() + ")";
}
}