Auto generated code. Do not modifiy! Please use org.web3j.codegen.TupleGenerator in the codegen module to update.
| 9 | * <a href="https://github.com/hyperledger/web3j/tree/main/codegen">codegen module</a> to update. |
| 10 | */ |
| 11 | public final class Tuple6<T1, T2, T3, T4, T5, T6> implements Tuple { |
| 12 | private static final int SIZE = 6; |
| 13 | |
| 14 | private final T1 value1; |
| 15 | |
| 16 | private final T2 value2; |
| 17 | |
| 18 | private final T3 value3; |
| 19 | |
| 20 | private final T4 value4; |
| 21 | |
| 22 | private final T5 value5; |
| 23 | |
| 24 | private final T6 value6; |
| 25 | |
| 26 | public Tuple6(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6) { |
| 27 | this.value1 = value1; |
| 28 | this.value2 = value2; |
| 29 | this.value3 = value3; |
| 30 | this.value4 = value4; |
| 31 | this.value5 = value5; |
| 32 | this.value6 = value6; |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * @deprecated use 'component1' method instead |
| 37 | * @return the return value |
| 38 | * */ |
| 39 | @Deprecated |
| 40 | public T1 getValue1() { |
| 41 | return value1; |
| 42 | } |
| 43 | |
| 44 | public T1 component1() { |
| 45 | return value1; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * @deprecated use 'component2' method instead |
| 50 | * @return the return value |
| 51 | * */ |
| 52 | @Deprecated |
| 53 | public T2 getValue2() { |
| 54 | return value2; |
| 55 | } |
| 56 | |
| 57 | public T2 component2() { |
| 58 | return value2; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * @deprecated use 'component3' method instead |
| 63 | * @return the return value |
| 64 | * */ |
| 65 | @Deprecated |
| 66 | public T3 getValue3() { |
| 67 | return value3; |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected