JobStateReason.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /* JobStateReason.java --
  2. Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
  3. This file is part of GNU Classpath.
  4. GNU Classpath is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. GNU Classpath is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Classpath; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA.
  16. Linking this library statically or dynamically with other modules is
  17. making a combined work based on this library. Thus, the terms and
  18. conditions of the GNU General Public License cover the whole
  19. combination.
  20. As a special exception, the copyright holders of this library give you
  21. permission to link this library with independent modules to produce an
  22. executable, regardless of the license terms of these independent
  23. modules, and to copy and distribute the resulting executable under
  24. terms of your choice, provided that you also meet, for each linked
  25. independent module, the terms and conditions of the license of that
  26. module. An independent module is a module which is not derived from
  27. or based on this library. If you modify this library, you may extend
  28. this exception to your version of the library, but you are not
  29. obligated to do so. If you do not wish to do so, delete this
  30. exception statement from your version. */
  31. package javax.print.attribute.standard;
  32. import javax.print.attribute.Attribute;
  33. import javax.print.attribute.EnumSyntax;
  34. /**
  35. * The <code>JobStateReason</code> attribute provides additional
  36. * information about the current state of a job. Its always part
  37. * of the {@link javax.print.attribute.standard.JobStateReasons}
  38. * printing attribute.
  39. * <p>
  40. * <b>IPP Compatibility:</b> JobStateReason is not an IPP 1.1
  41. * attribute itself but used inside the <code>JobStateReasons</code>
  42. * attribute.
  43. * </p>
  44. *
  45. * @author Michael Koch (konqueror@gmx.de)
  46. * @author Wolfgang Baer (WBaer@gmx.de)
  47. */
  48. public class JobStateReason extends EnumSyntax
  49. implements Attribute
  50. {
  51. private static final long serialVersionUID = -8765894420449009168L;
  52. /**
  53. * The printer has accepted the job or is retrieving document
  54. * data for processing.
  55. */
  56. public static final JobStateReason JOB_INCOMING = new JobStateReason(0);
  57. /**
  58. * The printer is expecting additional document data before it
  59. * can move this job into the processing state.
  60. */
  61. public static final JobStateReason JOB_DATA_INSUFFICIENT = new JobStateReason(1);
  62. /**
  63. * The printer is unable to access one or more documents provided
  64. * by reference in the print job.
  65. */
  66. public static final JobStateReason DOCUMENT_ACCESS_ERROR = new JobStateReason(2);
  67. /**
  68. * The printer has not received the whole job submission. This
  69. * indicates no reason for the interruption.
  70. */
  71. public static final JobStateReason SUBMISSION_INTERRUPTED = new JobStateReason(3);
  72. /**
  73. * The printer transfers the job to the actual output device.
  74. */
  75. public static final JobStateReason JOB_OUTGOING = new JobStateReason(4);
  76. /**
  77. * The job was submitted with a <code>JobHoldUntil</code> attribute which
  78. * specifies a time period still in the future and causes the job to
  79. * be on hold.
  80. */
  81. public static final JobStateReason JOB_HOLD_UNTIL_SPECIFIED = new JobStateReason(5);
  82. /**
  83. * One or more resources needed by the job are not ready. E.g. needed
  84. * media type.
  85. */
  86. public static final JobStateReason RESOURCES_ARE_NOT_READY = new JobStateReason(6);
  87. /**
  88. * The printer stopped partly.
  89. */
  90. public static final JobStateReason PRINTER_STOPPED_PARTLY = new JobStateReason(7);
  91. /**
  92. * The printer stopped complete.
  93. */
  94. public static final JobStateReason PRINTER_STOPPED = new JobStateReason(8);
  95. /**
  96. * The printer is currently interpreting the jobs document data.
  97. * Detailed state of the job's processing state.
  98. */
  99. public static final JobStateReason JOB_INTERPRETING = new JobStateReason(9);
  100. /**
  101. * The printer has queued the document data.
  102. * Detailed state of the job's processing state.
  103. */
  104. public static final JobStateReason JOB_QUEUED = new JobStateReason(10);
  105. /**
  106. * The printer is transforming the document data to another representation.
  107. * Detailed state of the job's processing state.
  108. */
  109. public static final JobStateReason JOB_TRANSFORMING = new JobStateReason(11);
  110. /**
  111. * The job is queued for marking.
  112. */
  113. public static final JobStateReason JOB_QUEUED_FOR_MARKER = new JobStateReason(12);
  114. /**
  115. * The job is currently printing.
  116. */
  117. public static final JobStateReason JOB_PRINTING = new JobStateReason(13);
  118. /**
  119. * The job was canceled by the user (the owner of the job).
  120. */
  121. public static final JobStateReason JOB_CANCELED_BY_USER = new JobStateReason(14);
  122. /**
  123. * The job was canceled by the operator.
  124. */
  125. public static final JobStateReason JOB_CANCELED_BY_OPERATOR = new JobStateReason(15);
  126. /**
  127. * The job was canceled by an unidentified local user at the device.
  128. */
  129. public static final JobStateReason JOB_CANCELED_AT_DEVICE = new JobStateReason(16);
  130. /**
  131. * The job has been aborted by the system.
  132. */
  133. public static final JobStateReason ABORTED_BY_SYSTEM = new JobStateReason(17);
  134. /**
  135. * The printer aborted the job because of an unsupported compression while
  136. * trying to decompress the document data.
  137. */
  138. public static final JobStateReason UNSUPPORTED_COMPRESSION = new JobStateReason(18);
  139. /**
  140. * The printer aborted the job because of a compression error while
  141. * trying to decompress the document data. If this state is given the test
  142. * for supported compression has already been passed.
  143. */
  144. public static final JobStateReason COMPRESSION_ERROR = new JobStateReason(19);
  145. /**
  146. * The printer aborted the job because of the document format is not supported.
  147. * This may happen if a job is specified as application/octet-stream format.
  148. */
  149. public static final JobStateReason UNSUPPORTED_DOCUMENT_FORMAT = new JobStateReason(20);
  150. /**
  151. * The printer aborted the job because of an error in the document data.
  152. */
  153. public static final JobStateReason DOCUMENT_FORMAT_ERROR = new JobStateReason(21);
  154. /**
  155. * The client has either canceled the job or the printer aborted the job.
  156. * However the printer still performs some action on the job e.g. to cleanup.
  157. */
  158. public static final JobStateReason PROCESSING_TO_STOP_POINT = new JobStateReason(22);
  159. /**
  160. * The printer is offline and therefore is not accepting jobs.
  161. */
  162. public static final JobStateReason SERVICE_OFF_LINE = new JobStateReason(23);
  163. /**
  164. * The printer completed the job successfully.
  165. */
  166. public static final JobStateReason JOB_COMPLETED_SUCCESSFULLY = new JobStateReason(24);
  167. /**
  168. * The printer completed the job with warnings.
  169. */
  170. public static final JobStateReason JOB_COMPLETED_WITH_WARNINGS = new JobStateReason(25);
  171. /**
  172. * The printer completed the job with errors.
  173. */
  174. public static final JobStateReason JOB_COMPLETED_WITH_ERRORS = new JobStateReason(26);
  175. /**
  176. * The job is retained and is able to be restared.
  177. */
  178. public static final JobStateReason JOB_RESTARTABLE = new JobStateReason(27);
  179. /**
  180. * The printer has forwarded the job to the actual output device. This device
  181. * is not capable of reporting the state back so that the job state is set
  182. * to completed by the printer.
  183. */
  184. public static final JobStateReason QUEUED_IN_DEVICE = new JobStateReason(28);
  185. private static final String[] stringTable =
  186. { "job-incoming", "job-data-insufficient", "document-access-error",
  187. "submission-interrupted", "job-outgoing", "job-hold-until-specified",
  188. "resources-are-not-ready", "printer-stopped-partly", "printer-stopped",
  189. "job-interpreting", "job-queued", "job-transforming",
  190. "job-queued-for-marker", "job-printing", "job-canceled-by-user",
  191. "job-canceled-by-operator", "job-canceled-at-device",
  192. "aborted-by-system", "unsupported-compression", "compression-error",
  193. "unsupported-document-format", "document-format-error",
  194. "processing-to-stop-point", "service-off-line",
  195. "job-completed-successfully", "job-completed-with-warnings",
  196. "job-completed-with-errors", "job-restartable", "queued-in-device" };
  197. private static final JobStateReason[] enumValueTable =
  198. { JOB_INCOMING, JOB_DATA_INSUFFICIENT, DOCUMENT_ACCESS_ERROR,
  199. SUBMISSION_INTERRUPTED, JOB_OUTGOING, JOB_HOLD_UNTIL_SPECIFIED,
  200. RESOURCES_ARE_NOT_READY, PRINTER_STOPPED_PARTLY, PRINTER_STOPPED,
  201. JOB_INTERPRETING, JOB_QUEUED, JOB_TRANSFORMING, JOB_QUEUED_FOR_MARKER,
  202. JOB_PRINTING, JOB_CANCELED_BY_USER, JOB_CANCELED_BY_OPERATOR,
  203. JOB_CANCELED_AT_DEVICE, ABORTED_BY_SYSTEM, UNSUPPORTED_COMPRESSION,
  204. COMPRESSION_ERROR, UNSUPPORTED_DOCUMENT_FORMAT, DOCUMENT_FORMAT_ERROR,
  205. PROCESSING_TO_STOP_POINT, SERVICE_OFF_LINE, JOB_COMPLETED_SUCCESSFULLY,
  206. JOB_COMPLETED_WITH_WARNINGS, JOB_COMPLETED_WITH_ERRORS, JOB_RESTARTABLE,
  207. QUEUED_IN_DEVICE };
  208. /**
  209. * Constructs a <code>JobStateReason</code> object.
  210. *
  211. * @param value the enum value.
  212. */
  213. protected JobStateReason(int value)
  214. {
  215. super(value);
  216. }
  217. /**
  218. * Returns category of this class.
  219. *
  220. * @return The class <code>JobStateReason</code> itself.
  221. */
  222. public Class< ? extends Attribute> getCategory()
  223. {
  224. return JobStateReason.class;
  225. }
  226. /**
  227. * Returns the name of this attribute.
  228. *
  229. * @return The name "job-state-reason".
  230. */
  231. public final String getName()
  232. {
  233. return "job-state-reason";
  234. }
  235. /**
  236. * Returns a table with the enumeration values represented as strings
  237. * for this object.
  238. *
  239. * @return The enumeration values as strings.
  240. */
  241. protected String[] getStringTable()
  242. {
  243. return stringTable;
  244. }
  245. /**
  246. * Returns a table with the enumeration values for this object.
  247. *
  248. * @return The enumeration values.
  249. */
  250. protected EnumSyntax[] getEnumValueTable()
  251. {
  252. return enumValueTable;
  253. }
  254. }