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/NumberOfDocuments.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.IntegerSyntax;
32
import javax.print.attribute.PrintJobAttribute;
33
34
/**
35
* Class {@code NumberOfDocuments} is an integer valued printing attribute that
36
* indicates the number of individual docs the printer has accepted for this
37
* job, regardless of whether the docs' print data has reached the printer or
38
* not.
39
* <p>
40
* <b>IPP Compatibility:</b> The integer value gives the IPP integer value. The
41
* category name returned by {@code getName()} gives the IPP attribute name.
42
*
43
* @author Alan Kaminsky
44
*/
45
public final class NumberOfDocuments extends IntegerSyntax
46
implements PrintJobAttribute {
47
48
/**
49
* Use serialVersionUID from JDK 1.4 for interoperability.
50
*/
51
@Serial
52
private static final long serialVersionUID = 7891881310684461097L;
53
54
/**
55
* Construct a new number of documents attribute with the given integer
56
* value.
57
*
58
* @param value Integer value
59
* @throws IllegalArgumentException if {@code value} is negative
60
*/
61
public NumberOfDocuments(int value) {
62
super (value, 0, Integer.MAX_VALUE);
63
}
64
65
/**
66
* Returns whether this number of documents attribute is equivalent to the
67
* passed in object. To be equivalent, all of the following conditions must
68
* be true:
69
* <ol type=1>
70
* <li>{@code object} is not {@code null}.
71
* <li>{@code object} is an instance of class {@code NumberOfDocuments}.
72
* <li>This number of documents attribute's value and {@code object}'s
73
* value are equal.
74
* </ol>
75
*
76
* @param object {@code Object} to compare to
77
* @return {@code true} if {@code object} is equivalent to this number of
78
* documents attribute, {@code false} otherwise
79
*/
80
public boolean equals(Object object) {
81
return (super.equals (object) &&
82
object instanceof NumberOfDocuments);
83
}
84
85
/**
86
* Get the printing attribute class which is to be used as the "category"
87
* for this printing attribute value.
88
* <p>
89
* For class {@code NumberOfDocuments}, the category is class
90
* {@code NumberOfDocuments} itself.
91
*
92
* @return printing attribute class (category), an instance of class
93
* {@link Class java.lang.Class}
94
*/
95
public final Class<? extends Attribute> getCategory() {
96
return NumberOfDocuments.class;
97
}
98
99
/**
100
* Get the name of the category of which this attribute value is an
101
* instance.
102
* <p>
103
* For class {@code NumberOfDocuments}, the category name is
104
* {@code "number-of-documents"}.
105
*
106
* @return attribute category name
107
*/
108
public final String getName() {
109
return "number-of-documents";
110
}
111
}
112
113