@@ -27,25 +27,25 @@ public class ImageQA {
27
27
@ SerializedName (SERIALIZED_NAME_ANGLE_THRESHOLD )
28
28
private Integer angleThreshold ;
29
29
30
- public static final String SERIALIZED_NAME_DISABLE_FOCUS_CHECK = "disableFocusCheck " ;
30
+ public static final String SERIALIZED_NAME_FOCUS_CHECK = "focusCheck " ;
31
31
32
- @ SerializedName (SERIALIZED_NAME_DISABLE_FOCUS_CHECK )
33
- private Boolean disableFocusCheck ;
32
+ @ SerializedName (SERIALIZED_NAME_FOCUS_CHECK )
33
+ private Boolean focusCheck ;
34
34
35
- public static final String SERIALIZED_NAME_DISABLE_GLARES_CHECK = "disableGlaresCheck " ;
35
+ public static final String SERIALIZED_NAME_GLARES_CHECK = "glaresCheck " ;
36
36
37
- @ SerializedName (SERIALIZED_NAME_DISABLE_GLARES_CHECK )
38
- private Boolean disableGlaresCheck ;
37
+ @ SerializedName (SERIALIZED_NAME_GLARES_CHECK )
38
+ private Boolean glaresCheck ;
39
39
40
- public static final String SERIALIZED_NAME_DISABLE_COLORNESS_CHECK = "disableColornessCheck " ;
40
+ public static final String SERIALIZED_NAME_COLORNESS_CHECK = "colornessCheck " ;
41
41
42
- @ SerializedName (SERIALIZED_NAME_DISABLE_COLORNESS_CHECK )
43
- private Boolean disableColornessCheck ;
42
+ @ SerializedName (SERIALIZED_NAME_COLORNESS_CHECK )
43
+ private Boolean colornessCheck ;
44
44
45
- public static final String SERIALIZED_NAME_DISABLE_MOIRE_CHECK = "disableMoireCheck " ;
45
+ public static final String SERIALIZED_NAME_MOIRE_CHECK = "moireCheck " ;
46
46
47
- @ SerializedName (SERIALIZED_NAME_DISABLE_MOIRE_CHECK )
48
- private Boolean disableMoireCheck ;
47
+ @ SerializedName (SERIALIZED_NAME_MOIRE_CHECK )
48
+ private Boolean moireCheck ;
49
49
50
50
public ImageQA withDpiThreshold (Integer dpiThreshold ) {
51
51
this .dpiThreshold = dpiThreshold ;
@@ -87,80 +87,80 @@ public void setAngleThreshold(Integer angleThreshold) {
87
87
this .angleThreshold = angleThreshold ;
88
88
}
89
89
90
- public ImageQA withDisableFocusCheck (Boolean disableFocusCheck ) {
91
- this .disableFocusCheck = disableFocusCheck ;
90
+ public ImageQA withFocusCheck (Boolean focusCheck ) {
91
+ this .focusCheck = focusCheck ;
92
92
return this ;
93
93
}
94
94
95
95
/**
96
96
* This option disabled focus check during performing image quality validation
97
97
*
98
- * @return disableFocusCheck
98
+ * @return focusCheck
99
99
*/
100
100
@ javax .annotation .Nullable
101
- public Boolean getDisableFocusCheck () {
102
- return disableFocusCheck ;
101
+ public Boolean getFocusCheck () {
102
+ return focusCheck ;
103
103
}
104
104
105
- public void setDisableFocusCheck (Boolean disableFocusCheck ) {
106
- this .disableFocusCheck = disableFocusCheck ;
105
+ public void setFocusCheck (Boolean focusCheck ) {
106
+ this .focusCheck = focusCheck ;
107
107
}
108
108
109
- public ImageQA withDisableGlaresCheck (Boolean disableGlaresCheck ) {
110
- this .disableGlaresCheck = disableGlaresCheck ;
109
+ public ImageQA withGlaresCheck (Boolean glaresCheck ) {
110
+ this .glaresCheck = glaresCheck ;
111
111
return this ;
112
112
}
113
113
114
114
/**
115
115
* This option disabled glares check during performing image quality validation
116
116
*
117
- * @return disableGlaresCheck
117
+ * @return glaresCheck
118
118
*/
119
119
@ javax .annotation .Nullable
120
- public Boolean getDisableGlaresCheck () {
121
- return disableGlaresCheck ;
120
+ public Boolean getGlaresCheck () {
121
+ return glaresCheck ;
122
122
}
123
123
124
- public void setDisableGlaresCheck (Boolean disableGlaresCheck ) {
125
- this .disableGlaresCheck = disableGlaresCheck ;
124
+ public void setGlaresCheck (Boolean glaresCheck ) {
125
+ this .glaresCheck = glaresCheck ;
126
126
}
127
127
128
- public ImageQA withDisableColornessCheck (Boolean disableColornessCheck ) {
129
- this .disableColornessCheck = disableColornessCheck ;
128
+ public ImageQA withColornessCheck (Boolean colornessCheck ) {
129
+ this .colornessCheck = colornessCheck ;
130
130
return this ;
131
131
}
132
132
133
133
/**
134
134
* This option disabled colorness check during performing image quality validation
135
135
*
136
- * @return disableColornessCheck
136
+ * @return colornessCheck
137
137
*/
138
138
@ javax .annotation .Nullable
139
- public Boolean getDisableColornessCheck () {
140
- return disableColornessCheck ;
139
+ public Boolean getColornessCheck () {
140
+ return colornessCheck ;
141
141
}
142
142
143
- public void setDisableColornessCheck (Boolean disableColornessCheck ) {
144
- this .disableColornessCheck = disableColornessCheck ;
143
+ public void setColornessCheck (Boolean colornessCheck ) {
144
+ this .colornessCheck = colornessCheck ;
145
145
}
146
146
147
- public ImageQA withDisableMoireCheck (Boolean disableMoireCheck ) {
148
- this .disableMoireCheck = disableMoireCheck ;
147
+ public ImageQA withMoireCheck (Boolean moireCheck ) {
148
+ this .moireCheck = moireCheck ;
149
149
return this ;
150
150
}
151
151
152
152
/**
153
153
* This option disabled moire patterns check during performing image quality validation
154
154
*
155
- * @return disableMoireCheck
155
+ * @return moireCheck
156
156
*/
157
157
@ javax .annotation .Nullable
158
- public Boolean getDisableMoireCheck () {
159
- return disableMoireCheck ;
158
+ public Boolean getMoireCheck () {
159
+ return moireCheck ;
160
160
}
161
161
162
- public void setDisableMoireCheck (Boolean disableMoireCheck ) {
163
- this .disableMoireCheck = disableMoireCheck ;
162
+ public void setMoireCheck (Boolean moireCheck ) {
163
+ this .moireCheck = moireCheck ;
164
164
}
165
165
166
166
@ Override
@@ -174,21 +174,16 @@ public boolean equals(java.lang.Object o) {
174
174
ImageQA imageQA = (ImageQA ) o ;
175
175
return Objects .equals (this .dpiThreshold , imageQA .dpiThreshold )
176
176
&& Objects .equals (this .angleThreshold , imageQA .angleThreshold )
177
- && Objects .equals (this .disableFocusCheck , imageQA .disableFocusCheck )
178
- && Objects .equals (this .disableGlaresCheck , imageQA .disableGlaresCheck )
179
- && Objects .equals (this .disableColornessCheck , imageQA .disableColornessCheck )
180
- && Objects .equals (this .disableMoireCheck , imageQA .disableMoireCheck );
177
+ && Objects .equals (this .focusCheck , imageQA .focusCheck )
178
+ && Objects .equals (this .glaresCheck , imageQA .glaresCheck )
179
+ && Objects .equals (this .colornessCheck , imageQA .colornessCheck )
180
+ && Objects .equals (this .moireCheck , imageQA .moireCheck );
181
181
}
182
182
183
183
@ Override
184
184
public int hashCode () {
185
185
return Objects .hash (
186
- dpiThreshold ,
187
- angleThreshold ,
188
- disableFocusCheck ,
189
- disableGlaresCheck ,
190
- disableColornessCheck ,
191
- disableMoireCheck );
186
+ dpiThreshold , angleThreshold , focusCheck , glaresCheck , colornessCheck , moireCheck );
192
187
}
193
188
194
189
@ Override
@@ -197,12 +192,10 @@ public String toString() {
197
192
sb .append ("class ImageQA {\n " );
198
193
sb .append (" dpiThreshold: " ).append (toIndentedString (dpiThreshold )).append ("\n " );
199
194
sb .append (" angleThreshold: " ).append (toIndentedString (angleThreshold )).append ("\n " );
200
- sb .append (" disableFocusCheck: " ).append (toIndentedString (disableFocusCheck )).append ("\n " );
201
- sb .append (" disableGlaresCheck: " ).append (toIndentedString (disableGlaresCheck )).append ("\n " );
202
- sb .append (" disableColornessCheck: " )
203
- .append (toIndentedString (disableColornessCheck ))
204
- .append ("\n " );
205
- sb .append (" disableMoireCheck: " ).append (toIndentedString (disableMoireCheck )).append ("\n " );
195
+ sb .append (" focusCheck: " ).append (toIndentedString (focusCheck )).append ("\n " );
196
+ sb .append (" glaresCheck: " ).append (toIndentedString (glaresCheck )).append ("\n " );
197
+ sb .append (" colornessCheck: " ).append (toIndentedString (colornessCheck )).append ("\n " );
198
+ sb .append (" moireCheck: " ).append (toIndentedString (moireCheck )).append ("\n " );
206
199
sb .append ("}" );
207
200
return sb .toString ();
208
201
}
0 commit comments