com.cadenzauk.core.tuple.Tuple20 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siesta Show documentation
Show all versions of siesta Show documentation
SIESTA Is an Easy SQL Typesafe API
/*
* Copyright (c) 2017 Cadenza United Kingdom Limited
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.cadenzauk.core.tuple;
import com.cadenzauk.core.function.Function20;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import java.util.function.Function;
public class Tuple20 implements Tuple {
private final T1 item1;
private final T2 item2;
private final T3 item3;
private final T4 item4;
private final T5 item5;
private final T6 item6;
private final T7 item7;
private final T8 item8;
private final T9 item9;
private final T10 item10;
private final T11 item11;
private final T12 item12;
private final T13 item13;
private final T14 item14;
private final T15 item15;
private final T16 item16;
private final T17 item17;
private final T18 item18;
private final T19 item19;
private final T20 item20;
public Tuple20(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8, T9 item9, T10 item10, T11 item11, T12 item12, T13 item13, T14 item14, T15 item15, T16 item16, T17 item17, T18 item18, T19 item19, T20 item20) {
this.item1 = item1;
this.item2 = item2;
this.item3 = item3;
this.item4 = item4;
this.item5 = item5;
this.item6 = item6;
this.item7 = item7;
this.item8 = item8;
this.item9 = item9;
this.item10 = item10;
this.item11 = item11;
this.item12 = item12;
this.item13 = item13;
this.item14 = item14;
this.item15 = item15;
this.item16 = item16;
this.item17 = item17;
this.item18 = item18;
this.item19 = item19;
this.item20 = item20;
}
@Override
public String toString() {
return "(" + item1 +
", " + item2 +
", " + item3 +
", " + item4 +
", " + item5 +
", " + item6 +
", " + item7 +
", " + item8 +
", " + item9 +
", " + item10 +
", " + item11 +
", " + item12 +
", " + item13 +
", " + item14 +
", " + item15 +
", " + item16 +
", " + item17 +
", " + item18 +
", " + item19 +
", " + item20 +
')';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Tuple20,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> tuple20 = (Tuple20,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?>) o;
return new EqualsBuilder()
.append(item1, tuple20.item1)
.append(item2, tuple20.item2)
.append(item3, tuple20.item3)
.append(item4, tuple20.item4)
.append(item5, tuple20.item5)
.append(item6, tuple20.item6)
.append(item7, tuple20.item7)
.append(item8, tuple20.item8)
.append(item9, tuple20.item9)
.append(item10, tuple20.item10)
.append(item11, tuple20.item11)
.append(item12, tuple20.item12)
.append(item13, tuple20.item13)
.append(item14, tuple20.item14)
.append(item15, tuple20.item15)
.append(item16, tuple20.item16)
.append(item17, tuple20.item17)
.append(item18, tuple20.item18)
.append(item19, tuple20.item19)
.append(item20, tuple20.item20)
.isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 37)
.append(item1)
.append(item2)
.append(item3)
.append(item4)
.append(item5)
.append(item6)
.append(item7)
.append(item8)
.append(item9)
.append(item10)
.append(item11)
.append(item12)
.append(item13)
.append(item14)
.append(item15)
.append(item16)
.append(item17)
.append(item18)
.append(item19)
.append(item20)
.toHashCode();
}
public T1 item1() {
return item1;
}
public T2 item2() {
return item2;
}
public T3 item3() {
return item3;
}
public T4 item4() {
return item4;
}
public T5 item5() {
return item5;
}
public T6 item6() {
return item6;
}
public T7 item7() {
return item7;
}
public T8 item8() {
return item8;
}
public T9 item9() {
return item9;
}
public T10 item10() {
return item10;
}
public T11 item11() {
return item11;
}
public T12 item12() {
return item12;
}
public T13 item13() {
return item13;
}
public T14 item14() {
return item14;
}
public T15 item15() {
return item15;
}
public T16 item16() {
return item16;
}
public T17 item17() {
return item17;
}
public T18 item18() {
return item18;
}
public T19 item19() {
return item19;
}
public T20 item20() {
return item20;
}
public T map(Function20 function) {
return function.apply(item1, item2, item3, item4, item5, item6, item7, item8, item9, item10, item11, item12, item13, item14, item15, item16, item17, item18, item19, item20);
}
public Tuple20 map1(Function function) {
return Tuple.of(
function.apply(item1),
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map2(Function function) {
return Tuple.of(
item1,
function.apply(item2),
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map3(Function function) {
return Tuple.of(
item1,
item2,
function.apply(item3),
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map4(Function function) {
return Tuple.of(
item1,
item2,
item3,
function.apply(item4),
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map5(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
function.apply(item5),
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map6(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
function.apply(item6),
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map7(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
function.apply(item7),
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map8(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
function.apply(item8),
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map9(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
function.apply(item9),
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map10(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
function.apply(item10),
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map11(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
function.apply(item11),
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map12(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
function.apply(item12),
item13,
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map13(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
function.apply(item13),
item14,
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map14(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
function.apply(item14),
item15,
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map15(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
function.apply(item15),
item16,
item17,
item18,
item19,
item20
);
}
public Tuple20 map16(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
function.apply(item16),
item17,
item18,
item19,
item20
);
}
public Tuple20 map17(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
function.apply(item17),
item18,
item19,
item20
);
}
public Tuple20 map18(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
function.apply(item18),
item19,
item20
);
}
public Tuple20 map19(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
function.apply(item19),
item20
);
}
public Tuple20 map20(Function function) {
return Tuple.of(
item1,
item2,
item3,
item4,
item5,
item6,
item7,
item8,
item9,
item10,
item11,
item12,
item13,
item14,
item15,
item16,
item17,
item18,
item19,
function.apply(item20)
);
}
}