in serde-generate/runtime/java/com/novi/serde/Tuple5.java [51:59]
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);
value = 31 * value + (this.field4 != null ? this.field4.hashCode() : 0);
return value;
}