src/share/classes/javax/print/attribute/standard/JobKOctetsSupported.java

Print this page




  25 package javax.print.attribute.standard;
  26 
  27 import javax.print.attribute.Attribute;
  28 import javax.print.attribute.SetOfIntegerSyntax;
  29 import javax.print.attribute.SupportedValuesAttribute;
  30 
  31 /**
  32  * Class JobKOctetsSupported is a printing attribute class, a set of integers,
  33  * that gives the supported values for a {@link JobKOctets JobKOctets}
  34  * attribute. It is restricted to a single contiguous range of integers;
  35  * multiple non-overlapping ranges are not allowed. This gives the lower and
  36  * upper bounds of the total sizes of print jobs in units of K octets (1024
  37  * octets) that the printer will accept.
  38  * <P>
  39  * <B>IPP Compatibility:</B> The JobKOctetsSupported attribute's canonical array
  40  * form gives the lower and upper bound for the range of values to be included
  41  * in an IPP "job-k-octets-supported" attribute. See class {@link
  42  * javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
  43  * explanation of canonical array form. The category name returned by
  44  * <CODE>getName()</CODE> gives the IPP attribute name.
  45  * <P>
  46  *
  47  * @author  Alan Kaminsky
  48  */
  49 public final class JobKOctetsSupported extends SetOfIntegerSyntax
  50     implements SupportedValuesAttribute {
  51 
  52     private static final long serialVersionUID = -2867871140549897443L;
  53 
  54     /**
  55      * Construct a new job K octets supported attribute containing a single
  56      * range of integers. That is, only those values of JobKOctets in the one
  57      * range are supported.
  58      *
  59      * @param  lowerBound  Lower bound of the range.
  60      * @param  upperBound  Upper bound of the range.
  61      *
  62      * @exception  IllegalArgumentException
  63      *  (Unchecked exception) Thrown if a null range is specified or if a
  64      *  non-null range is specified with <CODE>lowerBound</CODE> less than
  65      *   0.




  25 package javax.print.attribute.standard;
  26 
  27 import javax.print.attribute.Attribute;
  28 import javax.print.attribute.SetOfIntegerSyntax;
  29 import javax.print.attribute.SupportedValuesAttribute;
  30 
  31 /**
  32  * Class JobKOctetsSupported is a printing attribute class, a set of integers,
  33  * that gives the supported values for a {@link JobKOctets JobKOctets}
  34  * attribute. It is restricted to a single contiguous range of integers;
  35  * multiple non-overlapping ranges are not allowed. This gives the lower and
  36  * upper bounds of the total sizes of print jobs in units of K octets (1024
  37  * octets) that the printer will accept.
  38  * <P>
  39  * <B>IPP Compatibility:</B> The JobKOctetsSupported attribute's canonical array
  40  * form gives the lower and upper bound for the range of values to be included
  41  * in an IPP "job-k-octets-supported" attribute. See class {@link
  42  * javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
  43  * explanation of canonical array form. The category name returned by
  44  * <CODE>getName()</CODE> gives the IPP attribute name.

  45  *
  46  * @author  Alan Kaminsky
  47  */
  48 public final class JobKOctetsSupported extends SetOfIntegerSyntax
  49     implements SupportedValuesAttribute {
  50 
  51     private static final long serialVersionUID = -2867871140549897443L;
  52 
  53     /**
  54      * Construct a new job K octets supported attribute containing a single
  55      * range of integers. That is, only those values of JobKOctets in the one
  56      * range are supported.
  57      *
  58      * @param  lowerBound  Lower bound of the range.
  59      * @param  upperBound  Upper bound of the range.
  60      *
  61      * @exception  IllegalArgumentException
  62      *  (Unchecked exception) Thrown if a null range is specified or if a
  63      *  non-null range is specified with <CODE>lowerBound</CODE> less than
  64      *   0.