com.landawn.abacus.util.Triple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-common Show documentation
Show all versions of abacus-common Show documentation
A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.
/*
* Copyright (c) 2015, Haiyang Li.
*
* 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.landawn.abacus.util;
import com.landawn.abacus.annotation.Beta;
import com.landawn.abacus.util.Tuple.Tuple3;
import com.landawn.abacus.util.u.Optional;
import com.landawn.abacus.util.stream.Stream;
/**
*
* @author Haiyang Li
* @param
* @param
* @param
* @since 0.8
*/
public final class Triple implements Mutable {
public L left;
public M middle;
public R right;
public Triple() {
}
Triple(final L l, final M m, final R r) {
this.left = l;
this.middle = m;
this.right = r;
}
/**
*
* @param
* @param
* @param
* @param l
* @param m
* @param r
* @return
*/
public static Triple of(final L l, final M m, final R r) {
return new Triple<>(l, m, r);
}
private static final Triple, ?, ?>[] EMPTY_ARRAY = new Triple[0];
@SuppressWarnings("unchecked")
public static Triple[] emptyArray() {
return (Triple[]) EMPTY_ARRAY;
}
/**
* Gets the left.
*
* @return
*/
public L getLeft() {
return left;
}
/**
* Sets the left.
*
* @param left the new left
*/
public void setLeft(final L left) {
this.left = left;
}
/**
* Gets the middle.
*
* @return
*/
public M getMiddle() {
return middle;
}
/**
* Sets the middle.
*
* @param middle the new middle
*/
public void setMiddle(final M middle) {
this.middle = middle;
}
/**
* Gets the right.
*
* @return
*/
public R getRight() {
return right;
}
/**
* Sets the right.
*
* @param right the new right
*/
public void setRight(final R right) {
this.right = right;
}
/**
*
* @param left
* @param middle
* @param right
*/
public void set(final L left, final M middle, final R right) {
this.left = left;
this.middle = middle;
this.right = right;
}
/**
* Gets the and set left.
*
* @param newLeft
* @return
*/
public L getAndSetLeft(L newLeft) {
final L res = left;
left = newLeft;
return res;
}
/**
* Sets the and get left.
*
* @param newLeft
* @return
*/
public L setAndGetLeft(L newLeft) {
left = newLeft;
return left;
}
/**
* Gets the and set middle.
*
* @param newMiddle
* @return
*/
public M getAndSetMiddle(M newMiddle) {
final M res = middle;
middle = newMiddle;
return res;
}
/**
* Sets the and get middle.
*
* @param newMiddle
* @return
*/
public M setAndGetMiddle(M newMiddle) {
middle = newMiddle;
return middle;
}
/**
* Gets the and set right.
*
* @param newRight
* @return
*/
public R getAndSetRight(R newRight) {
final R res = newRight;
right = newRight;
return res;
}
/**
* Sets the and get right.
*
* @param newRight
* @return
*/
public R setAndGetRight(R newRight) {
right = newRight;
return right;
}
/**
* Set to the specified newLeft
and returns true
* if predicate
returns true. Otherwise returns
* false
without setting the value to new value.
*
* @param
* @param newLeft
* @param predicate - the first parameter is current pair, the second
* parameter is the newLeft
* @return
* @throws E the e
*/
public boolean setLeftIf(final L newLeft, Throwables.BiPredicate super Triple, ? super L, E> predicate) throws E {
if (predicate.test(this, newLeft)) {
this.left = newLeft;
return true;
}
return false;
}
/**
* Set to the specified newMiddle
and returns true
* if predicate
returns true. Otherwise returns
* false
without setting the value to new value.
*
* @param
* @param newMiddle
* @param predicate - the first parameter is current pair, the second
* parameter is the newMiddle
* @return
* @throws E the e
*/
public boolean setMiddleIf(final M newMiddle, Throwables.BiPredicate super Triple, ? super M, E> predicate) throws E {
if (predicate.test(this, newMiddle)) {
this.middle = newMiddle;
return true;
}
return false;
}
/**
* Set to the specified newRight
and returns true
* if predicate
returns true. Otherwise returns
* false
without setting the value to new value.
*
* @param
* @param newRight
* @param predicate - the first parameter is current pair, the second
* parameter is the newRight
* @return
* @throws E the e
*/
public boolean setRightIf(final R newRight, Throwables.BiPredicate super Triple, ? super R, E> predicate) throws E {
if (predicate.test(this, newRight)) {
this.right = newRight;
return true;
}
return false;
}
/**
* Set to the specified newLeft
and newRight
and
* returns true
if predicate
returns true.
* Otherwise returns false
without setting the left/right to
* new values.
*
* @param
* @param newLeft
* @param newMiddle
* @param newRight
* @param predicate - the first parameter is current pair, the second
* parameter is the newLeft
, the third parameter is the
* newMiddle
, the fourth parameter is the
* newRight
* @return
* @throws E the e
*/
public boolean setIf(final L newLeft, final M newMiddle, final R newRight,
Throwables.QuadPredicate super Triple, ? super L, ? super M, ? super R, E> predicate) throws E {
if (predicate.test(this, newLeft, newMiddle, newRight)) {
this.left = newLeft;
this.middle = newMiddle;
this.right = newRight;
return true;
}
return false;
}
// /**
// * Swap the left and right value. they must be same type.
// */
// public void reverse() {
// Object tmp = left;
// this.left = (L) right;
// this.right = (R) tmp;
// }
/**
* Returns a new instance of Triple<R, M, L>.
*
* @return a new instance of Triple<R, M, L>.
*/
@Beta
public Triple reverse() {
return new Triple<>(this.right, this.middle, this.left);
}
public Triple copy() {
return new Triple<>(this.left, this.middle, this.right);
}
public Object[] toArray() {
return new Object[] { left, middle, right };
}
/**
*
* @param
* @param a
* @return
*/
public A[] toArray(A[] a) {
if (a.length < 3) {
a = N.copyOf(a, 3);
}
a[0] = (A) left;
a[1] = (A) middle;
a[2] = (A) right;
return a;
}
/**
*
* @param
* @param comsumer
* @throws E the e
*/
public void forEach(Throwables.Consumer, E> comsumer) throws E {
final Throwables.Consumer