Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/print/attribute/standard/Fidelity.java
38918 views
1
/*
2
* Copyright (c) 2000, 2006, 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
package javax.print.attribute.standard;
26
27
import javax.print.attribute.Attribute;
28
import javax.print.attribute.EnumSyntax;
29
import javax.print.attribute.PrintJobAttribute;
30
import javax.print.attribute.PrintRequestAttribute;
31
32
/**
33
* Class Fidelity is a printing attribute class, an enumeration,
34
* that indicates whether total fidelity to client supplied print request
35
* attributes is required.
36
* If FIDELITY_TRUE is specified and a service cannot print the job exactly
37
* as specified it must reject the job.
38
* If FIDELITY_FALSE is specified a reasonable attempt to print the job is
39
* acceptable. If not supplied the default is FIDELITY_FALSE.
40
*
41
* <P>
42
* <B>IPP Compatibility:</B> The IPP boolean value is "true" for FIDELITY_TRUE
43
* and "false" for FIDELITY_FALSE. The category name returned by
44
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
45
* integer value is the IPP enum value. The <code>toString()</code> method
46
* returns the IPP string representation of the attribute value.
47
* See <a href="http://www.ietf.org/rfc/rfc2911.txt">RFC 2911</a> Section 15.1 for
48
* a fuller description of the IPP fidelity attribute.
49
* <P>
50
*
51
*/
52
public final class Fidelity extends EnumSyntax
53
implements PrintJobAttribute, PrintRequestAttribute {
54
55
private static final long serialVersionUID = 6320827847329172308L;
56
57
/**
58
* The job must be printed exactly as specified. or else rejected.
59
*/
60
public static final Fidelity
61
FIDELITY_TRUE = new Fidelity(0);
62
63
/**
64
* The printer should make reasonable attempts to print the job,
65
* even if it cannot print it exactly as specified.
66
*/
67
public static final Fidelity
68
FIDELITY_FALSE = new Fidelity(1);
69
70
/**
71
* Construct a new fidelity enumeration value with the
72
* given integer value.
73
*
74
* @param value Integer value.
75
*/
76
protected Fidelity(int value) {
77
super (value);
78
}
79
80
private static final String[] myStringTable = {
81
"true",
82
"false"
83
};
84
85
86
private static final Fidelity[] myEnumValueTable = {
87
FIDELITY_TRUE,
88
FIDELITY_FALSE
89
};
90
91
/**
92
* Returns the string table for class Fidelity.
93
*/
94
protected String[] getStringTable() {
95
return myStringTable;
96
}
97
98
/**
99
* Returns the enumeration value table for class Fidelity.
100
*/
101
protected EnumSyntax[] getEnumValueTable() {
102
return myEnumValueTable;
103
} /**
104
* Get the printing attribute class which is to be used as the "category"
105
* for this printing attribute value.
106
* <P>
107
* For class Fidelity the category is class Fidelity itself.
108
*
109
* @return Printing attribute class (category), an instance of class
110
* {@link java.lang.Class java.lang.Class}.
111
*/
112
public final Class<? extends Attribute> getCategory() {
113
return Fidelity.class;
114
}
115
116
/**
117
* Get the name of the category of which this attribute value is an
118
* instance.
119
* <P>
120
* For class Fidelity the category name is
121
* <CODE>"ipp-attribute-fidelity"</CODE>.
122
*
123
* @return Attribute category name.
124
*/
125
public final String getName() {
126
return "ipp-attribute-fidelity";
127
}
128
129
}
130
131