|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
javax.print.attribute.IntegerSyntax
, Cloneable

, JobImpressions
, JobImpressionsCompleted
, JobKOctets
, JobKOctetsProcessed
, JobMediaSheets
, JobMediaSheetsCompleted
, JobPriority
, JobPrioritySupported
, NumberOfDocuments
, NumberOfInterveningJobs
, NumberUp
, PagesPerMinute
, PagesPerMinuteColor
, QueuedJobCount

public abstract class IntegerSyntax

, Cloneable

Class IntegerSyntax is an abstract base class providing the common implementation of all attributes with integer values.
Under the hood, an integer attribute is just an integer. You can get an
integer attribute's integer value by calling getValue()
. An integer attribute's integer value is
established when it is constructed (see IntegerSyntax(int)
). Once constructed, an integer attribute's
value is immutable.
| Constructor Summary | |
|---|---|
protected |
IntegerSyntax
Construct a new integer attribute with the given integer value. |
protected |
IntegerSyntax
Construct a new integer attribute with the given integer value, which must lie within the given range. |
| Method Summary | |
|---|---|
boolean |
equals
Returns whether this integer attribute is equivalent to the passed in object. |
int |
getValue
Returns this integer attribute's integer value. |
int |
hashCode
Returns a hash code value for this integer attribute. |
String |
toString
Returns a string value corresponding to this integer attribute. |
Methods inherited from class java.lang.Object ![]() |
|---|
clone |
| Constructor Detail |
|---|

protected IntegerSyntax(int value)
value - Integer value.

protected IntegerSyntax(int value,
int lowerBound,
int upperBound)
value - Integer value.lowerBound - Lower bound.upperBound - Upper bound.
IllegalArgumentException

- (Unchecked exception) Thrown if value is less than
lowerBound or greater than
upperBound.| Method Detail |
|---|

public int getValue()

public boolean equals(Object![]()
![]()
object)
object is not null.
object is an instance of class IntegerSyntax.
object's value are
equal.
equals

in class Object

object - Object to compare to.
object is equivalent to this integer
attribute, false otherwise.Object.hashCode()
,
Hashtable


public int hashCode()
hashCode

in class Object

Object.equals(java.lang.Object)
,
Hashtable


public String![]()
![]()
toString()
toString

in class Object

|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||