net.mintern.primitive.pair.ImmutableDoublePair 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 org.apache.commons.lang3.tuple.ImmutablePair;
/**
* An immutable pair consisting of {@code double} elements, providing a version of
* {@link ImmutablePair} that avoids unnecessary {@code Double} boxing.
*
* The class is {@code final}, so a subclass cannot add undesirable behavior.
*
* #ThreadSafe#
*
* @author Brandon Mintern
*/
public final class ImmutableDoublePair extends DoublePair {
private static final long serialVersionUID = 1;
/**
* Obtains an immutable pair of the given {@code double} values.
*
* @param left the left element
* @param right the right element
* @return a pair formed from the two parameters, not null
*/
public static ImmutableDoublePair of(double left, double right) {
return new ImmutableDoublePair(left, right);
}
public final double left;
public final double right;
/**
* Create a new pair instance.
*
* @param left the left value
* @param right the right value
*/
public ImmutableDoublePair(double left, double right) {
this.left = left;
this.right = right;
}
@Override
public double getLeft() {
return left;
}
@Override
public double getRight() {
return right;
}
@Override
public ImmutablePair boxed() {
return new ImmutablePair<>(left, right);
}
}