ImageProps$.java
1.96 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.scene7.is.util.SizeInt
* scala.None
* scala.None$
* scala.Option
* scala.Serializable
* scala.Some
* scala.Tuple8
* scala.collection.Seq
* scala.runtime.AbstractFunction8
* scala.runtime.BoxesRunTime
*/
package com.scene7.is.image_server.image_info;
import com.scene7.is.image_server.image_info.ImageFormat;
import com.scene7.is.image_server.image_info.ImageProps;
import com.scene7.is.util.SizeInt;
import java.io.File;
import scala.None;
import scala.Option;
import scala.Serializable;
import scala.Some;
import scala.Tuple8;
import scala.collection.Seq;
import scala.runtime.AbstractFunction8;
import scala.runtime.BoxesRunTime;
public final class ImageProps$
extends AbstractFunction8<File, SizeInt, SizeInt, Object, String, Object, ImageFormat, Seq<String>, ImageProps>
implements Serializable {
public static final ImageProps$ MODULE$;
public static {
new com.scene7.is.image_server.image_info.ImageProps$();
}
public final String toString() {
return "ImageProps";
}
public ImageProps apply(File path, SizeInt size, SizeInt sizeWithOrientation, boolean hasAlpha, String encoding, long tileBytes, ImageFormat format, Seq<String> warnings) {
return new ImageProps(path, size, sizeWithOrientation, hasAlpha, encoding, tileBytes, format, warnings);
}
public Option<Tuple8<File, SizeInt, SizeInt, Object, String, Object, ImageFormat, Seq<String>>> unapply(ImageProps x$0) {
return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple8((Object)x$0.path(), (Object)x$0.size(), (Object)x$0.sizeWithOrientation(), (Object)BoxesRunTime.boxToBoolean((boolean)x$0.hasAlpha()), (Object)x$0.encoding(), (Object)BoxesRunTime.boxToLong((long)x$0.tileBytes()), (Object)x$0.format(), x$0.warnings()));
}
private Object readResolve() {
return MODULE$;
}
private ImageProps$() {
MODULE$ = this;
}
}