OptimizeImgOptions.java
2.21 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.native2pdf.xml;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="optimizeImgOptions", propOrder={"downSampleAlgo", "downSampleTo", "downSampleAbove", "compressAlgo", "compressQlty", "tileSize"})
public class OptimizeImgOptions
implements Serializable {
@XmlElement(defaultValue="3")
protected long downSampleAlgo;
protected long downSampleTo;
protected long downSampleAbove;
protected long compressAlgo;
protected long compressQlty;
@XmlElement(defaultValue="256")
protected Long tileSize;
public long getDownSampleAlgo() {
return this.downSampleAlgo;
}
public void setDownSampleAlgo(long value) {
this.downSampleAlgo = value;
}
public boolean isSetDownSampleAlgo() {
return true;
}
public long getDownSampleTo() {
return this.downSampleTo;
}
public void setDownSampleTo(long value) {
this.downSampleTo = value;
}
public boolean isSetDownSampleTo() {
return true;
}
public long getDownSampleAbove() {
return this.downSampleAbove;
}
public void setDownSampleAbove(long value) {
this.downSampleAbove = value;
}
public boolean isSetDownSampleAbove() {
return true;
}
public long getCompressAlgo() {
return this.compressAlgo;
}
public void setCompressAlgo(long value) {
this.compressAlgo = value;
}
public boolean isSetCompressAlgo() {
return true;
}
public long getCompressQlty() {
return this.compressQlty;
}
public void setCompressQlty(long value) {
this.compressQlty = value;
}
public boolean isSetCompressQlty() {
return true;
}
public Long getTileSize() {
return this.isSetTileSize() ? this.tileSize : 256;
}
public void setTileSize(Long value) {
this.tileSize = value;
}
public boolean isSetTileSize() {
return this.tileSize != null;
}
}