blob: 6dccb50ef651e96cb5aa30408e8ae7935eba2449 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2004 Sun Microsystems, Inc. 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. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25package javax.print.attribute.standard;
26
27import javax.print.attribute.Attribute;
28import javax.print.attribute.EnumSyntax;
29import javax.print.attribute.PrintServiceAttribute;
30
31/**
32 * Class PrinterIsAcceptingJobs is a printing attribute class, an enumeration,
33 * that indicates whether the printer is currently able to accept jobs. This
34 * value is independent of the {@link PrinterState PrinterState} and {@link
35 * PrinterStateReasons PrinterStateReasons} attributes because its value does
36 * not affect the current job; rather it affects future jobs. If the value is
37 * NOT_ACCEPTING_JOBS, the printer will reject jobs even when the {@link
38 * PrinterState PrinterState} is IDLE. If value is ACCEPTING_JOBS, the Printer
39 * will accept jobs even when the {@link PrinterState PrinterState} is STOPPED.
40 * <P>
41 * <B>IPP Compatibility:</B> The IPP boolean value is "true" for ACCEPTING_JOBS
42 * and "false" for NOT_ACCEPTING_JOBS. TThe category name returned by
43 * <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
44 * integer value is the IPP enum value. The <code>toString()</code> method
45 * returns the IPP string representation of the attribute value.
46 * <P>
47 *
48 * @author Alan Kaminsky
49 */
50public final class PrinterIsAcceptingJobs extends EnumSyntax
51 implements PrintServiceAttribute {
52
53 private static final long serialVersionUID = -5052010680537678061L;
54
55 /**
56 * The printer is currently rejecting any jobs sent to it.
57 */
58 public static final PrinterIsAcceptingJobs
59 NOT_ACCEPTING_JOBS = new PrinterIsAcceptingJobs(0);
60
61 /**
62 * The printer is currently acccepting jobs.
63 */
64 public static final PrinterIsAcceptingJobs
65 ACCEPTING_JOBS = new PrinterIsAcceptingJobs(1);
66
67 /**
68 * Construct a new printer is accepting jobs enumeration value with the
69 * given integer value.
70 *
71 * @param value Integer value.
72 */
73 protected PrinterIsAcceptingJobs(int value) {
74 super (value);
75 }
76
77 private static final String[] myStringTable = {
78 "not-accepting-jobs",
79 "accepting-jobs"
80 };
81
82 private static final PrinterIsAcceptingJobs[] myEnumValueTable = {
83 NOT_ACCEPTING_JOBS,
84 ACCEPTING_JOBS
85 };
86
87 /**
88 * Returns the string table for class PrinterIsAcceptingJobs.
89 */
90 protected String[] getStringTable() {
91 return myStringTable;
92 }
93
94 /**
95 * Returns the enumeration value table for class PrinterIsAcceptingJobs.
96 */
97 protected EnumSyntax[] getEnumValueTable() {
98 return myEnumValueTable;
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 PrinterIsAcceptingJobs, the
106 * category is class PrinterIsAcceptingJobs 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 PrinterIsAcceptingJobs.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 PrinterIsAcceptingJobs, the
120 * category name is <CODE>"printer-is-accepting-jobs"</CODE>.
121 *
122 * @return Attribute category name.
123 */
124 public final String getName() {
125 return "printer-is-accepting-jobs";
126 }
127
128}