yangys
2024-03-28 13ada1093cb8de6e31a718d2222429ded70133c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.qianwen.core.excel.extend.head;
 
import java.util.List;
import java.util.Set;
 
/* loaded from: blade-starter-excel-9.3.0.0-SNAPSHOT.jar:org/springblade/core/excel/extend/head/HeadMeta.class */
public class HeadMeta {
    private List<List<String>> head;
    private Set<String> ignoreHeadFields;
 
    public void setHead(final List<List<String>> head) {
        this.head = head;
    }
 
    public void setIgnoreHeadFields(final Set<String> ignoreHeadFields) {
        this.ignoreHeadFields = ignoreHeadFields;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof HeadMeta) {
            HeadMeta other = (HeadMeta) o;
            if (other.canEqual(this)) {
                Object this$head = getHead();
                Object other$head = other.getHead();
                if (this$head == null) {
                    if (other$head != null) {
                        return false;
                    }
                } else if (!this$head.equals(other$head)) {
                    return false;
                }
                Object this$ignoreHeadFields = getIgnoreHeadFields();
                Object other$ignoreHeadFields = other.getIgnoreHeadFields();
                return this$ignoreHeadFields == null ? other$ignoreHeadFields == null : this$ignoreHeadFields.equals(other$ignoreHeadFields);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof HeadMeta;
    }
 
    public int hashCode() {
        Object $head = getHead();
        int result = (1 * 59) + ($head == null ? 43 : $head.hashCode());
        Object $ignoreHeadFields = getIgnoreHeadFields();
        return (result * 59) + ($ignoreHeadFields == null ? 43 : $ignoreHeadFields.hashCode());
    }
 
    public String toString() {
        return "HeadMeta(head=" + getHead() + ", ignoreHeadFields=" + getIgnoreHeadFields() + ")";
    }
 
    public List<List<String>> getHead() {
        return this.head;
    }
 
    public Set<String> getIgnoreHeadFields() {
        return this.ignoreHeadFields;
    }
}