Package org.reactfx.util
Class Tuple6<A,B,C,D,E,F>
- java.lang.Object
-
- org.reactfx.util.Tuple6<A,B,C,D,E,F>
-
public class Tuple6<A,B,C,D,E,F> extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
void
exec(HexaConsumer<? super A,? super B,? super C,? super D,? super E,? super F> f)
A
get1()
B
get2()
C
get3()
D
get4()
E
get5()
F
get6()
int
hashCode()
<T> T
map(HexaFunction<? super A,? super B,? super C,? super D,? super E,? super F,? extends T> f)
boolean
test(HexaPredicate<? super A,? super B,? super C,? super D,? super E,? super F> f)
java.lang.String
toString()
Tuple6<A,B,C,D,E,F>
update1(A a)
Tuple6<A,B,C,D,E,F>
update2(B b)
Tuple6<A,B,C,D,E,F>
update3(C c)
Tuple6<A,B,C,D,E,F>
update4(D d)
Tuple6<A,B,C,D,E,F>
update5(E e)
Tuple6<A,B,C,D,E,F>
update6(F f)
-
-
-
Method Detail
-
get1
public A get1()
-
get2
public B get2()
-
get3
public C get3()
-
get4
public D get4()
-
get5
public E get5()
-
get6
public F get6()
-
map
public <T> T map(HexaFunction<? super A,? super B,? super C,? super D,? super E,? super F,? extends T> f)
-
test
public boolean test(HexaPredicate<? super A,? super B,? super C,? super D,? super E,? super F> f)
-
exec
public void exec(HexaConsumer<? super A,? super B,? super C,? super D,? super E,? super F> f)
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-