@@ -27,6 +27,26 @@ 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" ;
31
+
32
+ @ SerializedName (SERIALIZED_NAME_DISABLE_FOCUS_CHECK )
33
+ private Boolean disableFocusCheck ;
34
+
35
+ public static final String SERIALIZED_NAME_DISABLE_GLARES_CHECK = "disableGlaresCheck" ;
36
+
37
+ @ SerializedName (SERIALIZED_NAME_DISABLE_GLARES_CHECK )
38
+ private Boolean disableGlaresCheck ;
39
+
40
+ public static final String SERIALIZED_NAME_DISABLE_COLORNESS_CHECK = "disableColornessCheck" ;
41
+
42
+ @ SerializedName (SERIALIZED_NAME_DISABLE_COLORNESS_CHECK )
43
+ private Boolean disableColornessCheck ;
44
+
45
+ public static final String SERIALIZED_NAME_DISABLE_MOIRE_CHECK = "disableMoireCheck" ;
46
+
47
+ @ SerializedName (SERIALIZED_NAME_DISABLE_MOIRE_CHECK )
48
+ private Boolean disableMoireCheck ;
49
+
30
50
public ImageQA withDpiThreshold (Integer dpiThreshold ) {
31
51
this .dpiThreshold = dpiThreshold ;
32
52
return this ;
@@ -67,6 +87,82 @@ public void setAngleThreshold(Integer angleThreshold) {
67
87
this .angleThreshold = angleThreshold ;
68
88
}
69
89
90
+ public ImageQA withDisableFocusCheck (Boolean disableFocusCheck ) {
91
+ this .disableFocusCheck = disableFocusCheck ;
92
+ return this ;
93
+ }
94
+
95
+ /**
96
+ * This option disabled focus check during performing image quality validation
97
+ *
98
+ * @return disableFocusCheck
99
+ */
100
+ @ javax .annotation .Nullable
101
+ public Boolean getDisableFocusCheck () {
102
+ return disableFocusCheck ;
103
+ }
104
+
105
+ public void setDisableFocusCheck (Boolean disableFocusCheck ) {
106
+ this .disableFocusCheck = disableFocusCheck ;
107
+ }
108
+
109
+ public ImageQA withDisableGlaresCheck (Boolean disableGlaresCheck ) {
110
+ this .disableGlaresCheck = disableGlaresCheck ;
111
+ return this ;
112
+ }
113
+
114
+ /**
115
+ * This option disabled glares check during performing image quality validation
116
+ *
117
+ * @return disableGlaresCheck
118
+ */
119
+ @ javax .annotation .Nullable
120
+ public Boolean getDisableGlaresCheck () {
121
+ return disableGlaresCheck ;
122
+ }
123
+
124
+ public void setDisableGlaresCheck (Boolean disableGlaresCheck ) {
125
+ this .disableGlaresCheck = disableGlaresCheck ;
126
+ }
127
+
128
+ public ImageQA withDisableColornessCheck (Boolean disableColornessCheck ) {
129
+ this .disableColornessCheck = disableColornessCheck ;
130
+ return this ;
131
+ }
132
+
133
+ /**
134
+ * This option disabled colorness check during performing image quality validation
135
+ *
136
+ * @return disableColornessCheck
137
+ */
138
+ @ javax .annotation .Nullable
139
+ public Boolean getDisableColornessCheck () {
140
+ return disableColornessCheck ;
141
+ }
142
+
143
+ public void setDisableColornessCheck (Boolean disableColornessCheck ) {
144
+ this .disableColornessCheck = disableColornessCheck ;
145
+ }
146
+
147
+ public ImageQA withDisableMoireCheck (Boolean disableMoireCheck ) {
148
+ this .disableMoireCheck = disableMoireCheck ;
149
+ return this ;
150
+ }
151
+
152
+ /**
153
+ * This option disabled moire patterns check during performing image quality validation
154
+ *
155
+ * @return disableMoireCheck
156
+ */
157
+ @ javax .annotation .Nullable
158
+ public Boolean getDisableMoireCheck () {
159
+ return disableMoireCheck ;
160
+ }
161
+
162
+ public void setDisableMoireCheck (Boolean disableMoireCheck ) {
163
+ this .disableMoireCheck = disableMoireCheck ;
164
+ }
165
+
70
166
@ Override
71
167
public boolean equals (java .lang .Object o ) {
72
168
if (this == o ) {
@@ -77,12 +173,22 @@ public boolean equals(java.lang.Object o) {
77
173
}
78
174
ImageQA imageQA = (ImageQA ) o ;
79
175
return Objects .equals (this .dpiThreshold , imageQA .dpiThreshold )
80
- && Objects .equals (this .angleThreshold , imageQA .angleThreshold );
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 );
81
181
}
82
182
83
183
@ Override
84
184
public int hashCode () {
85
- return Objects .hash (dpiThreshold , angleThreshold );
185
+ return Objects .hash (
186
+ dpiThreshold ,
187
+ angleThreshold ,
188
+ disableFocusCheck ,
189
+ disableGlaresCheck ,
190
+ disableColornessCheck ,
191
+ disableMoireCheck );
86
192
}
87
193
88
194
@ Override
@@ -91,6 +197,12 @@ public String toString() {
91
197
sb .append ("class ImageQA {\n " );
92
198
sb .append (" dpiThreshold: " ).append (toIndentedString (dpiThreshold )).append ("\n " );
93
199
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 " );
94
206
sb .append ("}" );
95
207
return sb .toString ();
96
208
}
0 commit comments