public int hashCode()

in serde-generate/runtime/java/com/novi/serde/Tuple6.java [57:66]


    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);
        value = 31 * value + (this.field5 != null ? this.field5.hashCode() : 0);
        return value;
    }