forked from http-parser/http-parser.java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFieldData.java
More file actions
41 lines (32 loc) · 738 Bytes
/
FieldData.java
File metadata and controls
41 lines (32 loc) · 738 Bytes
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
package http_parser;
public class FieldData {
public int off;
public int len;
public FieldData(){}
public FieldData(int off, int len){
this.off = off;
this.len = len;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
FieldData fieldData = (FieldData) o;
if (len != fieldData.len) return false;
if (off != fieldData.off) return false;
return true;
}
@Override
public int hashCode() {
int result = off;
result = 31 * result + len;
return result;
}
@Override
public String toString() {
return "FieldData{" +
"off=" + off +
", len=" + len +
'}';
}
}