Liking cljdoc? Tell your friends :D

javax.print.attribute.IntegerSyntax

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.

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.
raw docstring

equalsclj

(equals this object)

Returns whether this integer attribute is equivalent to the passed in object. To be equivalent, all of the following conditions must be true:

object is not null.

object is an instance of class IntegerSyntax.

This integer attribute's value and object's value are equal.

object - Object to compare to. - java.lang.Object

returns: True if object is equivalent to this integer attribute, false otherwise. - boolean

Returns whether this integer attribute is equivalent to the passed in
 object. To be equivalent, all of the following conditions must be true:


 object is not null.

 object is an instance of class IntegerSyntax.

 This integer attribute's value and object's value are
 equal.

object - Object to compare to. - `java.lang.Object`

returns: True if object is equivalent to this integer
          attribute, false otherwise. - `boolean`
raw docstring

get-valueclj

(get-value this)

Returns this integer attribute's integer value.

returns: the integer value - int

Returns this integer attribute's integer value.

returns: the integer value - `int`
raw docstring

hash-codeclj

(hash-code this)

Returns a hash code value for this integer attribute. The hash code is just this integer attribute's integer value.

returns: a hash code value for this object. - int

Returns a hash code value for this integer attribute. The hash code is
 just this integer attribute's integer value.

returns: a hash code value for this object. - `int`
raw docstring

to-stringclj

(to-string this)

Returns a string value corresponding to this integer attribute. The string value is just this integer attribute's integer value converted to a string.

returns: a string representation of the object. - java.lang.String

Returns a string value corresponding to this integer attribute. The
 string value is just this integer attribute's integer value converted to
 a string.

returns: a string representation of the object. - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close