serde-generate/runtime/java/com/novi/serde/Tuple4.java (45 lines of code) (raw):
// Copyright (c) Facebook, Inc. and its affiliates
// SPDX-License-Identifier: MIT OR Apache-2.0
package com.novi.serde;
import java.util.Objects;
public final class Tuple4<T0, T1, T2, T3> {
public final T0 field0;
public final T1 field1;
public final T2 field2;
public final T3 field3;
public Tuple4(T0 f0, T1 f1, T2 f2, T3 f3) {
Objects.requireNonNull(f0, "f0 must not be null");
Objects.requireNonNull(f1, "f1 must not be null");
Objects.requireNonNull(f2, "f2 must not be null");
Objects.requireNonNull(f3, "f3 must not be null");
this.field0 = f0;
this.field1 = f1;
this.field2 = f2;
this.field3 = f3;
}
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
Tuple4<?,?,?,?> other = (Tuple4) obj;
if (!Objects.equals(this.field0, other.field0)) {
return false;
}
if (!Objects.equals(this.field1, other.field1)) {
return false;
}
if (!Objects.equals(this.field2, other.field2)) {
return false;
}
if (!Objects.equals(this.field3, other.field3)) {
return false;
}
return true;
}
public int hashCode() {
int value = 7;
value = 31 * value + (this.field0 != null ? this.field0.hashCode() : 0);
value = 31 * value + (this.field1 != null ? this.field1.hashCode() : 0);
value = 31 * value + (this.field2 != null ? this.field2.hashCode() : 0);
value = 31 * value + (this.field3 != null ? this.field3.hashCode() : 0);
return value;
}
}