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/JobImpressionsCompleted.java
38918 views
1
/*
2
* Copyright (c) 2000, 2004, 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.IntegerSyntax;
29
import javax.print.attribute.PrintJobAttribute;
30
31
/**
32
* Class JobImpressionsCompleted is an integer valued printing attribute class
33
* that specifies the number of impressions completed for the job so far. For
34
* printing devices, the impressions completed includes interpreting, marking,
35
* and stacking the output.
36
* <P>
37
* The JobImpressionsCompleted attribute describes the progress of the job. This
38
* attribute is intended to be a counter. That is, the JobImpressionsCompleted
39
* value for a job that has not started processing must be 0. When the job's
40
* {@link JobState JobState} is PROCESSING or PROCESSING_STOPPED, the
41
* JobImpressionsCompleted value is intended to increase as the job is
42
* processed; it indicates the amount of the job that has been processed at the
43
* time the Print Job's attribute set is queried or at the time a print job
44
* event is reported. When the job enters the COMPLETED, CANCELED, or ABORTED
45
* states, the JobImpressionsCompleted value is the final value for the job.
46
* <P>
47
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
48
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
49
* name.
50
* <P>
51
*
52
* @see JobImpressions
53
* @see JobImpressionsSupported
54
* @see JobKOctetsProcessed
55
* @see JobMediaSheetsCompleted
56
*
57
* @author Alan Kaminsky
58
*/
59
public final class JobImpressionsCompleted extends IntegerSyntax
60
implements PrintJobAttribute {
61
62
private static final long serialVersionUID = 6722648442432393294L;
63
64
/**
65
* Construct a new job impressions completed attribute with the given
66
* integer value.
67
*
68
* @param value Integer value.
69
*
70
* @exception IllegalArgumentException
71
* (Unchecked exception) Thrown if <CODE>value</CODE> is less than 0.
72
*/
73
public JobImpressionsCompleted(int value) {
74
super (value, 0, Integer.MAX_VALUE);
75
}
76
77
/**
78
* Returns whether this job impressions completed attribute is equivalent
79
* tp the passed in object. To be equivalent, all of the following
80
* conditions must be true:
81
* <OL TYPE=1>
82
* <LI>
83
* <CODE>object</CODE> is not null.
84
* <LI>
85
* <CODE>object</CODE> is an instance of class JobImpressionsCompleted.
86
* <LI>
87
* This job impressions completed attribute's value and
88
* <CODE>object</CODE>'s value are equal.
89
* </OL>
90
*
91
* @param object Object to compare to.
92
*
93
* @return True if <CODE>object</CODE> is equivalent to this job
94
* impressions completed attribute, false otherwise.
95
*/
96
public boolean equals(Object object) {
97
return(super.equals (object) &&
98
object instanceof JobImpressionsCompleted);
99
}
100
101
/**
102
* Get the printing attribute class which is to be used as the "category"
103
* for this printing attribute value.
104
* <P>
105
* For class JobImpressionsCompleted, the category is class
106
* JobImpressionsCompleted itself.
107
*
108
* @return Printing attribute class (category), an instance of class
109
* {@link java.lang.Class java.lang.Class}.
110
*/
111
public final Class<? extends Attribute> getCategory() {
112
return JobImpressionsCompleted.class;
113
}
114
115
/**
116
* Get the name of the category of which this attribute value is an
117
* instance.
118
* <P>
119
* For class JobImpressionsCompleted, the category name is
120
* <CODE>"job-impressions-completed"</CODE>.
121
*
122
* @return Attribute category name.
123
*/
124
public final String getName() {
125
return "job-impressions-completed";
126
}
127
128
}
129
130