MayExistResource$.java
1.98 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* scala.None
* scala.None$
* scala.Option
* scala.Predef
* scala.Predef$
* scala.ScalaObject
* scala.Serializable
* scala.Some
* scala.Tuple3
* scala.collection.GenMap
* scala.collection.Seq
* scala.collection.immutable.Map
* scala.collection.immutable.Map$
* scala.collection.immutable.Nil
* scala.collection.immutable.Nil$
* scala.runtime.AbstractFunction3
*/
package com.adobe.forms.rm.impl;
import com.adobe.forms.rm.impl.MayExistResource;
import scala.None;
import scala.Option;
import scala.Predef;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple3;
import scala.collection.GenMap;
import scala.collection.Seq;
import scala.collection.immutable.Map;
import scala.collection.immutable.Nil;
import scala.runtime.AbstractFunction3;
public final class MayExistResource$
extends AbstractFunction3
implements ScalaObject,
Serializable {
public static final MayExistResource$ MODULE$;
public static {
new com.adobe.forms.rm.impl.MayExistResource$();
}
public final String toString() {
return "MayExistResource";
}
public Map init$default$3() {
return (Map)Predef..MODULE$.Map().apply((Seq)Nil..MODULE$);
}
public Option init$default$2() {
return None..MODULE$;
}
public Option unapply(MayExistResource x$0) {
return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple3(x$0.content(), x$0.context(), x$0.map()));
}
public MayExistResource apply(Object content, Option context, Map map) {
return new MayExistResource(content, context, map);
}
public Map apply$default$3() {
return (Map)Predef..MODULE$.Map().apply((Seq)Nil..MODULE$);
}
public Option apply$default$2() {
return None..MODULE$;
}
public Object readResolve() {
return MODULE$;
}
private MayExistResource$() {
MODULE$ = this;
}
}