Java Doc for JobStateReasons.java in  » 6.0-JDK-Core » print » javax » print » attribute » standard » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » print » javax.print.attribute.standard 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.print.attribute.standard.JobStateReasons

JobStateReasons
final public class JobStateReasons extends HashSet implements PrintJobAttribute(Code)
Class JobStateReasons is a printing attribute class, a set of enumeration values, that provides additional information about the job's current state, i.e., information that augments the value of the job's JobState JobState attribute.

Instances of JobStateReason JobStateReason do not appear in a Print Job's attribute set directly. Rather, a JobStateReasons attribute appears in the Print Job's attribute set. The JobStateReasons attribute contains zero, one, or more than one JobStateReason JobStateReason objects which pertain to the Print Job's status. The printer adds a JobStateReason JobStateReason object to the Print Job's JobStateReasons attribute when the corresponding condition becomes true of the Print Job, and the printer removes the JobStateReason JobStateReason object again when the corresponding condition becomes false, regardless of whether the Print Job's overall JobState JobState also changed.

Class JobStateReasons inherits its implementation from class java.util.HashSet java.util.HashSet . Unlike most printing attributes which are immutable once constructed, class JobStateReasons is designed to be mutable; you can add JobStateReason JobStateReason objects to an existing JobStateReasons object and remove them again. However, like class java.util.HashSet java.util.HashSet , class JobStateReasons is not multiple thread safe. If a JobStateReasons object will be used by multiple threads, be sure to synchronize its operations (e.g., using a synchronized set view obtained from class java.util.Collections java.util.Collections ).

IPP Compatibility: The string value returned by each individual JobStateReason JobStateReason object's toString() method gives the IPP keyword value. The category name returned by getName() gives the IPP attribute name.


author:
   Alan Kaminsky




Constructor Summary
public  JobStateReasons()
     Construct a new, empty job state reasons attribute; the underlying hash set has the default initial capacity and load factor.
public  JobStateReasons(int initialCapacity)
     Construct a new, empty job state reasons attribute; the underlying hash set has the given initial capacity and the default load factor.
public  JobStateReasons(int initialCapacity, float loadFactor)
     Construct a new, empty job state reasons attribute; the underlying hash set has the given initial capacity and load factor.
public  JobStateReasons(Collection<JobStateReason> collection)
     Construct a new job state reasons attribute that contains the same JobStateReason JobStateReason objects as the given collection. The underlying hash set's initial capacity and load factor are as specified in the superclass constructor java.util.HashSet.HashSet(java.util.Collection) HashSet(Collection) .

Method Summary
public  booleanadd(JobStateReason o)
     Adds the specified element to this job state reasons attribute if it is not already present.
final public  Class<? extends Attribute>getCategory()
     Get the printing attribute class which is to be used as the "category" for this printing attribute value.

For class JobStateReasons, the category is class JobStateReasons itself.

final public  StringgetName()
     Get the name of the category of which this attribute value is an instance.


Constructor Detail
JobStateReasons
public JobStateReasons()(Code)
Construct a new, empty job state reasons attribute; the underlying hash set has the default initial capacity and load factor.



JobStateReasons
public JobStateReasons(int initialCapacity)(Code)
Construct a new, empty job state reasons attribute; the underlying hash set has the given initial capacity and the default load factor.
Parameters:
  initialCapacity - Initial capacity.
throws:
  IllegalArgumentException - if the initial capacity is less than zero.



JobStateReasons
public JobStateReasons(int initialCapacity, float loadFactor)(Code)
Construct a new, empty job state reasons attribute; the underlying hash set has the given initial capacity and load factor.
Parameters:
  initialCapacity - Initial capacity.
Parameters:
  loadFactor - Load factor.
throws:
  IllegalArgumentException - if the initial capacity is less than zero.



JobStateReasons
public JobStateReasons(Collection<JobStateReason> collection)(Code)
Construct a new job state reasons attribute that contains the same JobStateReason JobStateReason objects as the given collection. The underlying hash set's initial capacity and load factor are as specified in the superclass constructor java.util.HashSet.HashSet(java.util.Collection) HashSet(Collection) .
Parameters:
  collection - Collection to copy.
exception:
  NullPointerException - (unchecked exception) Thrown if collection is null or if any element in collection is null.
throws:
  ClassCastException - (unchecked exception) Thrown if any element in collection is not an instance of class JobStateReason JobStateReason.




Method Detail
add
public boolean add(JobStateReason o)(Code)
Adds the specified element to this job state reasons attribute if it is not already present. The element to be added must be an instance of class JobStateReason JobStateReason . If this job state reasons attribute already contains the specified element, the call leaves this job state reasons attribute unchanged and returns false.
Parameters:
  o - Element to be added to this job state reasons attribute. true if this job state reasons attribute did notalready contain the specified element.
throws:
  NullPointerException - (unchecked exception) Thrown if the specified element is null.
throws:
  ClassCastException - (unchecked exception) Thrown if the specified element is not an instance of class JobStateReason JobStateReason.
since:
   1.5



getCategory
final public Class<? extends Attribute> getCategory()(Code)
Get the printing attribute class which is to be used as the "category" for this printing attribute value.

For class JobStateReasons, the category is class JobStateReasons itself. Printing attribute class (category), an instance of classjava.lang.Class java.lang.Class.




getName
final public String getName()(Code)
Get the name of the category of which this attribute value is an instance.

For class JobStateReasons, the category name is "job-state-reasons". Attribute category name.




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.