forked from gitlab4j/gitlab4j-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPosition.java
More file actions
226 lines (175 loc) · 4.69 KB
/
Position.java
File metadata and controls
226 lines (175 loc) · 4.69 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package org.gitlab4j.api.models;
import java.io.Serializable;
import org.gitlab4j.models.utils.JacksonJson;
import org.gitlab4j.models.utils.JacksonJsonEnumHelper;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public class Position implements Serializable {
private static final long serialVersionUID = 1L;
public static enum PositionType {
TEXT,
IMAGE,
FILE;
private static JacksonJsonEnumHelper<PositionType> enumHelper =
new JacksonJsonEnumHelper<>(PositionType.class, false, false);
@JsonCreator
public static PositionType forValue(String value) {
return enumHelper.forValue(value);
}
@JsonValue
public String toValue() {
return (enumHelper.toString(this));
}
@Override
public String toString() {
return (enumHelper.toString(this));
}
}
private String baseSha;
private String startSha;
private String headSha;
private String oldPath;
private String newPath;
private PositionType positionType;
private Integer oldLine;
private Integer newLine;
private Integer width;
private Integer height;
private Double x;
private Double y;
private LineRange lineRange;
public String getBaseSha() {
return baseSha;
}
public void setBaseSha(String baseSha) {
this.baseSha = baseSha;
}
public Position withBaseSha(String baseSha) {
this.baseSha = baseSha;
return (this);
}
public String getStartSha() {
return startSha;
}
public void setStartSha(String startSha) {
this.startSha = startSha;
}
public Position withStartSha(String startSha) {
this.startSha = startSha;
return (this);
}
public String getHeadSha() {
return headSha;
}
public void setHeadSha(String headSha) {
this.headSha = headSha;
}
public Position withHeadSha(String headSha) {
this.headSha = headSha;
return (this);
}
public String getOldPath() {
return oldPath;
}
public void setOldPath(String oldPath) {
this.oldPath = oldPath;
}
public Position withOldPath(String oldPath) {
this.oldPath = oldPath;
return (this);
}
public String getNewPath() {
return newPath;
}
public void setNewPath(String newPath) {
this.newPath = newPath;
}
public Position withNewPath(String newPath) {
this.newPath = newPath;
return (this);
}
public PositionType getPositionType() {
return positionType;
}
public void setPositionType(PositionType positionType) {
this.positionType = positionType;
}
public Position withPositionType(PositionType positionType) {
this.positionType = positionType;
return (this);
}
public Integer getOldLine() {
return oldLine;
}
public void setOldLine(Integer oldLine) {
this.oldLine = oldLine;
}
public Position withOldLine(Integer oldLine) {
this.oldLine = oldLine;
return (this);
}
public Integer getNewLine() {
return newLine;
}
public void setNewLine(Integer newLine) {
this.newLine = newLine;
}
public Position withNewLine(Integer newLine) {
this.newLine = newLine;
return (this);
}
public Integer getWidth() {
return width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Position withWidth(Integer width) {
this.width = width;
return (this);
}
public Integer getHeight() {
return height;
}
public void setHeight(Integer height) {
this.height = height;
}
public Position withHeight(Integer height) {
this.height = height;
return (this);
}
public Double getX() {
return x;
}
public void setX(Double x) {
this.x = x;
}
public Position withX(Double x) {
this.x = x;
return (this);
}
public Double getY() {
return y;
}
public void setY(Double y) {
this.y = y;
}
public Position withY(Double y) {
this.y = y;
return (this);
}
public LineRange getLineRange() {
return lineRange;
}
public void setLineRange(LineRange lineRange) {
this.lineRange = lineRange;
}
public Position withLineRange(LineRange lineRange) {
this.lineRange = lineRange;
return (this);
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}