@@ -240,18 +240,6 @@ constructor(
240
240
241
241
@com.fasterxml.jackson.annotation.JsonValue fun _value (): JsonField <String > = value
242
242
243
- override fun equals (other : Any? ): Boolean {
244
- if (this == = other) {
245
- return true
246
- }
247
-
248
- return /* spotless:off */ other is Status && value == other.value /* spotless:on */
249
- }
250
-
251
- override fun hashCode () = value.hashCode()
252
-
253
- override fun toString () = value.toString()
254
-
255
243
companion object {
256
244
257
245
@JvmField val RUNNING = of(" running" )
@@ -305,27 +293,27 @@ constructor(
305
293
}
306
294
307
295
fun asString (): String = _value ().asStringOrThrow()
308
- }
309
-
310
- class Type
311
- @JsonCreator
312
- private constructor (
313
- private val value: JsonField <String >,
314
- ) : Enum {
315
-
316
- @com.fasterxml.jackson.annotation.JsonValue fun _value (): JsonField <String > = value
317
296
318
297
override fun equals (other : Any? ): Boolean {
319
298
if (this == = other) {
320
299
return true
321
300
}
322
301
323
- return /* spotless:off */ other is Type && value == other.value /* spotless:on */
302
+ return /* spotless:off */ other is Status && value == other.value /* spotless:on */
324
303
}
325
304
326
305
override fun hashCode () = value.hashCode()
327
306
328
307
override fun toString () = value.toString()
308
+ }
309
+
310
+ class Type
311
+ @JsonCreator
312
+ private constructor (
313
+ private val value: JsonField <String >,
314
+ ) : Enum {
315
+
316
+ @com.fasterxml.jackson.annotation.JsonValue fun _value (): JsonField <String > = value
329
317
330
318
companion object {
331
319
@@ -380,6 +368,18 @@ constructor(
380
368
}
381
369
382
370
fun asString (): String = _value ().asStringOrThrow()
371
+
372
+ override fun equals (other : Any? ): Boolean {
373
+ if (this == = other) {
374
+ return true
375
+ }
376
+
377
+ return /* spotless:off */ other is Type && value == other.value /* spotless:on */
378
+ }
379
+
380
+ override fun hashCode () = value.hashCode()
381
+
382
+ override fun toString () = value.toString()
383
383
}
384
384
385
385
override fun equals (other : Any? ): Boolean {
0 commit comments