ImageFormat$.java
3.25 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.forms.layout.ImageFormat$$anonfun
* com.adobe.forms.layout.ImageFormat$$anonfun$apply
* scala.Function0
* scala.None
* scala.None$
* scala.Option
* scala.ScalaObject
* scala.Some
* scala.runtime.AbstractFunction0
*/
package com.adobe.forms.layout;
import com.adobe.forms.layout.ImageFormat;
import com.adobe.forms.layout.ImageFormat$;
import com.adobe.forms.layout.ImageFormatEmbedded$;
import com.adobe.forms.layout.ImageFormatLink$;
import com.adobe.forms.layout.ImageFormatRaster$;
import com.adobe.forms.layout.ImageFormatUndefined$;
import scala.Function0;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Some;
import scala.runtime.AbstractFunction0;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public final class ImageFormat$
implements ScalaObject {
public static final ImageFormat$ MODULE$;
public static {
new com.adobe.forms.layout.ImageFormat$();
}
/*
* Unable to fully structure code
* Enabled aggressive block sorting
* Lifted jumps to return sites
*/
public Option<ImageFormat> apply(String s) {
var2_2 = s;
v0 = ImageFormatLink$.MODULE$.value();
var3_3 = var2_2;
if (v0 != null) ** GOTO lbl7
if (var3_3 == null) ** GOTO lbl-1000
** GOTO lbl10
lbl7: // 1 sources:
if (v0.equals(var3_3)) lbl-1000: // 2 sources:
{
v1 = new Some((Object)ImageFormatLink$.MODULE$);
return v1;
}
lbl10: // 3 sources:
v2 = ImageFormatEmbedded$.MODULE$.value();
var4_4 = var2_2;
if (v2 != null) ** GOTO lbl15
if (var4_4 == null) ** GOTO lbl-1000
** GOTO lbl18
lbl15: // 1 sources:
if (v2.equals(var4_4)) lbl-1000: // 2 sources:
{
v1 = new Some((Object)ImageFormatEmbedded$.MODULE$);
return v1;
}
lbl18: // 3 sources:
v3 = ImageFormatRaster$.MODULE$.value();
var5_5 = var2_2;
if (v3 != null) ** GOTO lbl23
if (var5_5 == null) ** GOTO lbl-1000
** GOTO lbl26
lbl23: // 1 sources:
if (v3.equals(var5_5)) lbl-1000: // 2 sources:
{
v1 = new Some((Object)ImageFormatRaster$.MODULE$);
return v1;
}
lbl26: // 3 sources:
v4 = ImageFormatUndefined$.MODULE$.value();
var6_6 = var2_2;
if (v4 != null) ** GOTO lbl31
if (var6_6 == null) ** GOTO lbl-1000
** GOTO lbl34
lbl31: // 1 sources:
if (v4.equals(var6_6)) lbl-1000: // 2 sources:
{
v1 = new Some((Object)ImageFormatUndefined$.MODULE$);
return v1;
}
lbl34: // 3 sources:
v1 = None..MODULE$;
return v1;
}
public Option<ImageFormat> apply(Option<String> v) {
return this.apply((String)v.getOrElse((Function0)new scala.Serializable(){
public static final long serialVersionUID;
public static {
long l = anonfun.apply.serialVersionUID = 0;
}
public final String apply() {
return "";
}
}));
}
private ImageFormat$() {
MODULE$ = this;
}
}