public static final class LObjIntFltTriple.MutObjIntFltTriple<T> extends LObjIntFltTriple.AbstractObjIntFltTriple<T>
Mutable, non-comparable tuple.
LObjIntFltTriple.AbstractObjIntFltTriple<T>, LObjIntFltTriple.ComparableObjIntFltTriple<T extends Comparable<T>>, LObjIntFltTriple.ImmCompObjIntFltTriple<T extends Comparable<T>>, LObjIntFltTriple.ImmObjIntFltTriple<T>, LObjIntFltTriple.MutCompObjIntFltTriple<T extends Comparable<T>>, LObjIntFltTriple.MutObjIntFltTriple<T>LObjIntPair.AbstractObjIntPair<T>, LObjIntPair.ComparableObjIntPair<T extends Comparable<T>>, LObjIntPair.ImmCompObjIntPair<T extends Comparable<T>>, LObjIntPair.ImmObjIntPair<T>, LObjIntPair.MutCompObjIntPair<T extends Comparable<T>>, LObjIntPair.MutObjIntPair<T>LSingle.AbstractSingle<T>, LSingle.ComparableSingle<T extends Comparable<T>>, LSingle.ImmCompSingle<T extends Comparable<T>>, LSingle.ImmSingle<T>, LSingle.MutCompSingle<T extends Comparable<T>>, LSingle.MutSingle<T>LTuple.VoidSIZE| Constructor and Description |
|---|
MutObjIntFltTriple(T a1,
int a2,
float a3) |
| Modifier and Type | Method and Description |
|---|---|
static <T> LObjIntFltTriple.MutObjIntFltTriple<T> |
copyOf(LObjIntFltTriple<T> tuple) |
T |
first() |
LObjIntFltTriple.MutObjIntFltTriple<T> |
first(T first) |
static <T> LObjIntFltTriple.MutObjIntFltTriple<T> |
of(T a1,
int a2,
float a3) |
void |
reset() |
int |
second() |
LObjIntFltTriple.MutObjIntFltTriple<T> |
second(int second) |
LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirst(T first) |
LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirstIf(LBiPredicate<T,T> predicate,
T first)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirstIf(LPredicate<T> predicate,
T first)
Sets value if predicate(current) OR current::predicate is true
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirstIf(T first,
LBiPredicate<T,T> predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirstIfArg(T first,
LPredicate<T> predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
|
<R> LObjIntFltTriple.MutObjIntFltTriple<T> |
setFirstIfArgNotNull(R arg,
LFunction<R,T> func)
Sets value derived from non-null argument, only if argument is not null.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecond(int second) |
LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecondIf(int second,
LBiIntPredicate predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecondIf(LBiIntPredicate predicate,
int second)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecondIf(LIntPredicate predicate,
int second)
Sets value if predicate(current) OR current::predicate is true
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecondIfArg(int second,
LIntPredicate predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
|
<R> LObjIntFltTriple.MutObjIntFltTriple<T> |
setSecondIfArgNotNull(R arg,
LToIntFunction<R> func)
Sets value derived from non-null argument, only if argument is not null.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setThird(float third) |
LObjIntFltTriple.MutObjIntFltTriple<T> |
setThirdIf(float third,
LBiFltPredicate predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setThirdIf(LBiFltPredicate predicate,
float third)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setThirdIf(LFltPredicate predicate,
float third)
Sets value if predicate(current) OR current::predicate is true
|
LObjIntFltTriple.MutObjIntFltTriple<T> |
setThirdIfArg(float third,
LFltPredicate predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
|
<R> LObjIntFltTriple.MutObjIntFltTriple<T> |
setThirdIfArgNotNull(R arg,
LToFltFunction<R> func)
Sets value derived from non-null argument, only if argument is not null.
|
float |
third() |
LObjIntFltTriple.MutObjIntFltTriple<T> |
third(float third) |
equals, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitargEquals, argEquals, argHashCode, get, iterator, size, valueargEquals, argEquals, argHashCodeargHashCodepublic MutObjIntFltTriple(T a1, int a2, float a3)
public static <T> LObjIntFltTriple.MutObjIntFltTriple<T> of(T a1, int a2, float a3)
public static <T> LObjIntFltTriple.MutObjIntFltTriple<T> copyOf(LObjIntFltTriple<T> tuple)
public T first()
public LObjIntFltTriple.MutObjIntFltTriple<T> first(T first)
public int second()
public LObjIntFltTriple.MutObjIntFltTriple<T> second(int second)
public float third()
public LObjIntFltTriple.MutObjIntFltTriple<T> third(float third)
public LObjIntFltTriple.MutObjIntFltTriple<T> setFirst(T first)
public LObjIntFltTriple.MutObjIntFltTriple<T> setFirstIfArg(T first, LPredicate<T> predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
public <R> LObjIntFltTriple.MutObjIntFltTriple<T> setFirstIfArgNotNull(R arg, LFunction<R,T> func)
Sets value derived from non-null argument, only if argument is not null.
public LObjIntFltTriple.MutObjIntFltTriple<T> setFirstIf(LPredicate<T> predicate, T first)
Sets value if predicate(current) OR current::predicate is true
public LObjIntFltTriple.MutObjIntFltTriple<T> setFirstIf(T first, LBiPredicate<T,T> predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
public LObjIntFltTriple.MutObjIntFltTriple<T> setFirstIf(LBiPredicate<T,T> predicate, T first)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
public LObjIntFltTriple.MutObjIntFltTriple<T> setSecond(int second)
public LObjIntFltTriple.MutObjIntFltTriple<T> setSecondIfArg(int second, LIntPredicate predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
public <R> LObjIntFltTriple.MutObjIntFltTriple<T> setSecondIfArgNotNull(R arg, LToIntFunction<R> func)
Sets value derived from non-null argument, only if argument is not null.
public LObjIntFltTriple.MutObjIntFltTriple<T> setSecondIf(LIntPredicate predicate, int second)
Sets value if predicate(current) OR current::predicate is true
public LObjIntFltTriple.MutObjIntFltTriple<T> setSecondIf(int second, LBiIntPredicate predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
public LObjIntFltTriple.MutObjIntFltTriple<T> setSecondIf(LBiIntPredicate predicate, int second)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
public LObjIntFltTriple.MutObjIntFltTriple<T> setThird(float third)
public LObjIntFltTriple.MutObjIntFltTriple<T> setThirdIfArg(float third, LFltPredicate predicate)
Sets value if predicate(newValue) OR newValue::predicate is true
public <R> LObjIntFltTriple.MutObjIntFltTriple<T> setThirdIfArgNotNull(R arg, LToFltFunction<R> func)
Sets value derived from non-null argument, only if argument is not null.
public LObjIntFltTriple.MutObjIntFltTriple<T> setThirdIf(LFltPredicate predicate, float third)
Sets value if predicate(current) OR current::predicate is true
public LObjIntFltTriple.MutObjIntFltTriple<T> setThirdIf(float third, LBiFltPredicate predicate)
Sets new value if predicate predicate(newValue, current) OR newValue::something(current) is true.
public LObjIntFltTriple.MutObjIntFltTriple<T> setThirdIf(LBiFltPredicate predicate, float third)
Sets new value if predicate predicate(current, newValue) OR current::something(newValue) is true.
public void reset()
Copyright © 2019. All rights reserved.