All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.lunisolar.magma.func.tuple.LBiObjDblTriple Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * This file is part of "lunisolar-magma".
 *
 * (C) Copyright 2014-2019 Lunisolar (http://lunisolar.eu/).
 *
 * 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 eu.lunisolar.magma.func.tuple;

import eu.lunisolar.magma.basics.meta.LTuple;
import eu.lunisolar.magma.basics.Null;
import eu.lunisolar.magma.basics.fluent.Fluent;
import eu.lunisolar.magma.func.function.LFunction;
import eu.lunisolar.magma.func.function.to.*;
import eu.lunisolar.magma.func.operator.unary.*;
import eu.lunisolar.magma.func.operator.binary.*;
import eu.lunisolar.magma.func.predicate.*;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import java.util.*;

/**
 * Exact equivalent of input parameters used in LBiObjDblConsumer.
 */
@SuppressWarnings("UnusedDeclaration")
public interface LBiObjDblTriple extends LTuple, LPair {

	int SIZE = 3;

	T1 first();

	default T1 value() {
		return first();
	}

	T2 second();

	double third();

	default Object get(int index) {
		switch (index) {
			case 1 :
				return first();
			case 2 :
				return second();
			case 3 :
				return third();
			default :
				throw new NoSuchElementException();
		}
	}

	/** Tuple size */
	default int size() {
		return SIZE;
	}

	/** Static hashCode() implementation method that takes same arguments as fields of the LBiObjDblTriple and calculates hash from it. */
	static  int argHashCode(T1 a1, T2 a2, double a3) {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((a1 == null) ? 0 : a1.hashCode());
		result = prime * result + ((a2 == null) ? 0 : a2.hashCode());
		result = prime * result + Double.hashCode(a3);
		return result;
	}

	/** Static equals() implementation that takes same arguments (doubled) as fields of the LBiObjDblTriple and checks if all values are equal. */
	static  boolean argEquals(T1 a1, T2 a2, double a3, T1 b1, T2 b2, double b3) {
		return Null.equals(a1, b1) && //
				Null.equals(a2, b2) && //
				a3 == b3; //
	}

	/**
	 * Static equals() implementation that takes two tuples asnd checks if they are equal.
	 *
	 * Tuples are considered equal if are implementing same interface and their tuple values are equal regardless of the implementing class.
	 */
	static boolean argEquals(LBiObjDblTriple the, Object that) {
		return Null.equals(the, that, (one, two) -> {
			// Intentionally all implementations of LBiObjDblTriple are allowed.
				if (!(two instanceof LBiObjDblTriple)) {
					return false;
				}

				LBiObjDblTriple other = (LBiObjDblTriple) two;

				return argEquals(one.first(), one.second(), one.third(), other.first(), other.second(), other.third());
			});
	}

	default Iterator iterator() {
		return new Iterator() {

			private int index;

			@Override
			public boolean hasNext() {
				return index < SIZE;
			}

			@Override
			public Object next() {
				index++;
				return get(index);
			}
		};
	}

	interface ComparableBiObjDblTriple, T2 extends Comparable> extends LBiObjDblTriple, Comparable> {

		@Override
		default int compareTo(LBiObjDblTriple that) {
			return Null.compare(this, that, (one, two) -> {
				int retval = 0;

				return (retval = Null.compare(one.first(), two.first())) != 0 ? retval : //
						(retval = Null.compare(one.second(), two.second())) != 0 ? retval : //
								(retval = Double.compare(one.third(), two.third())) != 0 ? retval : 0; //
				});
		}

	}

	abstract class AbstractBiObjDblTriple implements LBiObjDblTriple {

		@Override
		public boolean equals(Object that) {
			return LBiObjDblTriple.argEquals(this, that);
		}

		@Override
		public int hashCode() {
			return LBiObjDblTriple.argHashCode(first(), second(), third());
		}

		@Override
		public String toString() {
			StringBuilder sb = new StringBuilder();
			sb.append('(');
			sb.append(first());
			sb.append(',');
			sb.append(second());
			sb.append(',');
			sb.append(third());
			sb.append(')');
			return sb.toString();
		}

	}

	/**
	 * Mutable, non-comparable tuple.
	 */
	final class MutBiObjDblTriple extends AbstractBiObjDblTriple {

		private T1 first;
		private T2 second;
		private double third;

		public MutBiObjDblTriple(T1 a1, T2 a2, double a3) {
			this.first = a1;
			this.second = a2;
			this.third = a3;
		}

		public static  MutBiObjDblTriple of(T1 a1, T2 a2, double a3) {
			return new MutBiObjDblTriple(a1, a2, a3);
		}

		public static  MutBiObjDblTriple copyOf(LBiObjDblTriple tuple) {
			return of(tuple.first(), tuple.second(), tuple.third());
		}

		public T1 first() {
			return first;
		}

		public MutBiObjDblTriple first(T1 first) {
			this.first = first;
			return this;
		}

		public T2 second() {
			return second;
		}

		public MutBiObjDblTriple second(T2 second) {
			this.second = second;
			return this;
		}

		public double third() {
			return third;
		}

		public MutBiObjDblTriple third(double third) {
			this.third = third;
			return this;
		}

		public MutBiObjDblTriple setFirst(T1 first) {
			this.first = first;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutBiObjDblTriple setFirstIfArg(T1 first, LPredicate predicate) {
			if (predicate.test(first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutBiObjDblTriple setFirstIfArgNotNull(R arg, LFunction func) {
			if (arg != null) {
				this.first = func.apply(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutBiObjDblTriple setFirstIf(LPredicate predicate, T1 first) {
			if (predicate.test(this.first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutBiObjDblTriple setFirstIf(T1 first, LBiPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(first, this.first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutBiObjDblTriple setFirstIf(LBiPredicate predicate, T1 first) {

			if (predicate.test(this.first, first)) {
				this.first = first;
			}
			return this;
		}

		public MutBiObjDblTriple setSecond(T2 second) {
			this.second = second;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutBiObjDblTriple setSecondIfArg(T2 second, LPredicate predicate) {
			if (predicate.test(second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutBiObjDblTriple setSecondIfArgNotNull(R arg, LFunction func) {
			if (arg != null) {
				this.second = func.apply(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutBiObjDblTriple setSecondIf(LPredicate predicate, T2 second) {
			if (predicate.test(this.second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutBiObjDblTriple setSecondIf(T2 second, LBiPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(second, this.second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutBiObjDblTriple setSecondIf(LBiPredicate predicate, T2 second) {

			if (predicate.test(this.second, second)) {
				this.second = second;
			}
			return this;
		}

		public MutBiObjDblTriple setThird(double third) {
			this.third = third;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutBiObjDblTriple setThirdIfArg(double third, LDblPredicate predicate) {
			if (predicate.test(third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutBiObjDblTriple setThirdIfArgNotNull(R arg, LToDblFunction func) {
			if (arg != null) {
				this.third = func.applyAsDbl(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutBiObjDblTriple setThirdIf(LDblPredicate predicate, double third) {
			if (predicate.test(this.third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutBiObjDblTriple setThirdIf(double third, LBiDblPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(third, this.third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutBiObjDblTriple setThirdIf(LBiDblPredicate predicate, double third) {

			if (predicate.test(this.third, third)) {
				this.third = third;
			}
			return this;
		}

		public void reset() {
			first = null;
			second = null;
			third = 0d;
		}
	}

	/**
	 * Mutable, comparable tuple.
	 */
	final class MutCompBiObjDblTriple, T2 extends Comparable> extends AbstractBiObjDblTriple implements ComparableBiObjDblTriple {

		private T1 first;
		private T2 second;
		private double third;

		public MutCompBiObjDblTriple(T1 a1, T2 a2, double a3) {
			this.first = a1;
			this.second = a2;
			this.third = a3;
		}

		public static , T2 extends Comparable> MutCompBiObjDblTriple of(T1 a1, T2 a2, double a3) {
			return new MutCompBiObjDblTriple(a1, a2, a3);
		}

		public static , T2 extends Comparable> MutCompBiObjDblTriple copyOf(LBiObjDblTriple tuple) {
			return of(tuple.first(), tuple.second(), tuple.third());
		}

		public T1 first() {
			return first;
		}

		public MutCompBiObjDblTriple first(T1 first) {
			this.first = first;
			return this;
		}

		public T2 second() {
			return second;
		}

		public MutCompBiObjDblTriple second(T2 second) {
			this.second = second;
			return this;
		}

		public double third() {
			return third;
		}

		public MutCompBiObjDblTriple third(double third) {
			this.third = third;
			return this;
		}

		public MutCompBiObjDblTriple setFirst(T1 first) {
			this.first = first;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutCompBiObjDblTriple setFirstIfArg(T1 first, LPredicate predicate) {
			if (predicate.test(first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutCompBiObjDblTriple setFirstIfArgNotNull(R arg, LFunction func) {
			if (arg != null) {
				this.first = func.apply(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutCompBiObjDblTriple setFirstIf(LPredicate predicate, T1 first) {
			if (predicate.test(this.first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutCompBiObjDblTriple setFirstIf(T1 first, LBiPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(first, this.first)) {
				this.first = first;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutCompBiObjDblTriple setFirstIf(LBiPredicate predicate, T1 first) {

			if (predicate.test(this.first, first)) {
				this.first = first;
			}
			return this;
		}

		public MutCompBiObjDblTriple setSecond(T2 second) {
			this.second = second;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutCompBiObjDblTriple setSecondIfArg(T2 second, LPredicate predicate) {
			if (predicate.test(second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutCompBiObjDblTriple setSecondIfArgNotNull(R arg, LFunction func) {
			if (arg != null) {
				this.second = func.apply(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutCompBiObjDblTriple setSecondIf(LPredicate predicate, T2 second) {
			if (predicate.test(this.second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutCompBiObjDblTriple setSecondIf(T2 second, LBiPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(second, this.second)) {
				this.second = second;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutCompBiObjDblTriple setSecondIf(LBiPredicate predicate, T2 second) {

			if (predicate.test(this.second, second)) {
				this.second = second;
			}
			return this;
		}

		public MutCompBiObjDblTriple setThird(double third) {
			this.third = third;
			return this;
		}

		/** Sets value if predicate(newValue) OR newValue::predicate is true */
		public MutCompBiObjDblTriple setThirdIfArg(double third, LDblPredicate predicate) {
			if (predicate.test(third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets value derived from non-null argument, only if argument is not null. */
		public  MutCompBiObjDblTriple setThirdIfArgNotNull(R arg, LToDblFunction func) {
			if (arg != null) {
				this.third = func.applyAsDbl(arg);
			}
			return this;
		}

		/** Sets value if predicate(current) OR current::predicate is true */
		public MutCompBiObjDblTriple setThirdIf(LDblPredicate predicate, double third) {
			if (predicate.test(this.third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true. */
		public MutCompBiObjDblTriple setThirdIf(double third, LBiDblPredicate predicate) {
			// the order of arguments is intentional, to allow predicate:
			if (predicate.test(third, this.third)) {
				this.third = third;
			}
			return this;
		}

		/** Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true. */
		public MutCompBiObjDblTriple setThirdIf(LBiDblPredicate predicate, double third) {

			if (predicate.test(this.third, third)) {
				this.third = third;
			}
			return this;
		}

		public void reset() {
			first = null;
			second = null;
			third = 0d;
		}
	}

	/**
	 * Immutable, non-comparable tuple.
	 */
	@Immutable
	final class ImmBiObjDblTriple extends AbstractBiObjDblTriple {

		private final T1 first;
		private final T2 second;
		private final double third;

		public ImmBiObjDblTriple(T1 a1, T2 a2, double a3) {
			this.first = a1;
			this.second = a2;
			this.third = a3;
		}

		public static  ImmBiObjDblTriple of(T1 a1, T2 a2, double a3) {
			return new ImmBiObjDblTriple(a1, a2, a3);
		}

		public static  ImmBiObjDblTriple copyOf(LBiObjDblTriple tuple) {
			return of(tuple.first(), tuple.second(), tuple.third());
		}

		public T1 first() {
			return first;
		}

		public T2 second() {
			return second;
		}

		public double third() {
			return third;
		}

	}

	/**
	 * Immutable, comparable tuple.
	 */
	@Immutable
	final class ImmCompBiObjDblTriple, T2 extends Comparable> extends AbstractBiObjDblTriple implements ComparableBiObjDblTriple {

		private final T1 first;
		private final T2 second;
		private final double third;

		public ImmCompBiObjDblTriple(T1 a1, T2 a2, double a3) {
			this.first = a1;
			this.second = a2;
			this.third = a3;
		}

		public static , T2 extends Comparable> ImmCompBiObjDblTriple of(T1 a1, T2 a2, double a3) {
			return new ImmCompBiObjDblTriple(a1, a2, a3);
		}

		public static , T2 extends Comparable> ImmCompBiObjDblTriple copyOf(LBiObjDblTriple tuple) {
			return of(tuple.first(), tuple.second(), tuple.third());
		}

		public T1 first() {
			return first;
		}

		public T2 second() {
			return second;
		}

		public double third() {
			return third;
		}

	}

}