Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/share/classes/javax/print/attribute/standard/Fidelity.java
41171 views
1
/*
2
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.print.attribute.standard;
27
28
import java.io.Serial;
29
30
import javax.print.attribute.Attribute;
31
import javax.print.attribute.EnumSyntax;
32
import javax.print.attribute.PrintJobAttribute;
33
import javax.print.attribute.PrintRequestAttribute;
34
35
/**
36
* Class {@code Fidelity} is a printing attribute class, an enumeration, that
37
* indicates whether total fidelity to client supplied print request attributes
38
* is required. If {@code FIDELITY_TRUE} is specified and a service cannot print
39
* the job exactly as specified it must reject the job. If
40
* {@code FIDELITY_FALSE} is specified a reasonable attempt to print the job is
41
* acceptable. If not supplied the default is {@code FIDELITY_FALSE}.
42
* <p>
43
* <b>IPP Compatibility:</b> The IPP boolean value is "true" for
44
* {@code FIDELITY_TRUE} and "false" for {@code FIDELITY_FALSE}. The category
45
* name returned by {@code getName()} is the IPP attribute name. The
46
* enumeration's integer value is the IPP enum value. The {@code toString()}
47
* method returns the IPP string representation of the attribute value. See
48
* <a href="http://www.ietf.org/rfc/rfc2911.txt">RFC 2911</a> Section 15.1 for a
49
* fuller description of the IPP fidelity attribute.
50
*/
51
public final class Fidelity extends EnumSyntax
52
implements PrintJobAttribute, PrintRequestAttribute {
53
54
/**
55
* Use serialVersionUID from JDK 1.4 for interoperability.
56
*/
57
@Serial
58
private static final long serialVersionUID = 6320827847329172308L;
59
60
/**
61
* The job must be printed exactly as specified. or else rejected.
62
*/
63
public static final Fidelity
64
FIDELITY_TRUE = new Fidelity(0);
65
66
/**
67
* The printer should make reasonable attempts to print the job, even if it
68
* cannot print it exactly as specified.
69
*/
70
public static final Fidelity
71
FIDELITY_FALSE = new Fidelity(1);
72
73
/**
74
* Construct a new fidelity enumeration value with the given integer value.
75
*
76
* @param value Integer value
77
*/
78
protected Fidelity(int value) {
79
super (value);
80
}
81
82
/**
83
* The string table for class {@code Fidelity}.
84
*/
85
private static final String[] myStringTable = {
86
"true",
87
"false"
88
};
89
90
/**
91
* The enumeration value table for class {@code Fidelity}.
92
*/
93
private static final Fidelity[] myEnumValueTable = {
94
FIDELITY_TRUE,
95
FIDELITY_FALSE
96
};
97
98
/**
99
* Returns the string table for class {@code Fidelity}.
100
*/
101
protected String[] getStringTable() {
102
return myStringTable;
103
}
104
105
/**
106
* Returns the enumeration value table for class {@code Fidelity}.
107
*/
108
protected EnumSyntax[] getEnumValueTable() {
109
return myEnumValueTable;
110
}
111
112
/**
113
* Get the printing attribute class which is to be used as the "category"
114
* for this printing attribute value.
115
* <p>
116
* For class {@code Fidelity} the category is class
117
* {@code Fidelity} itself.
118
*
119
* @return printing attribute class (category), an instance of class
120
* {@link Class java.lang.Class}
121
*/
122
public final Class<? extends Attribute> getCategory() {
123
return Fidelity.class;
124
}
125
126
/**
127
* Get the name of the category of which this attribute value is an
128
* instance.
129
* <p>
130
* For class {@code Fidelity} the category name is
131
* {@code "ipp-attribute-fidelity"}.
132
*
133
* @return attribute category name
134
*/
135
public final String getName() {
136
return "ipp-attribute-fidelity";
137
}
138
}
139
140