0N/A/*
2362N/A * Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/Apackage javax.print.attribute.standard;
0N/A
0N/Aimport javax.print.attribute.Attribute;
0N/Aimport javax.print.attribute.IntegerSyntax;
0N/Aimport javax.print.attribute.SupportedValuesAttribute;
0N/A
0N/A/**
0N/A * Class JobPrioritySupported is an integer valued printing attribute class
0N/A * that specifies whether a Print Service instance supports the {@link
0N/A * JobPriority JobPriority} attribute and the number of different job priority
0N/A * levels supported.
0N/A * <P>
0N/A * The client can always specify any {@link JobPriority JobPriority} value
0N/A * from 1 to 100 for a job. However, the Print Service instance may support
0N/A * fewer than 100 different job priority levels. If this is the case, the
0N/A * Print Service instance automatically maps the client-specified job priority
0N/A * value to one of the supported job priority levels, dividing the 100 job
0N/A * priority values equally among the available job priority levels.
0N/A * <P>
0N/A * <B>IPP Compatibility:</B> The integer value gives the IPP integer value.
0N/A * The category name returned by <CODE>getName()</CODE> gives the IPP
0N/A * attribute name.
0N/A * <P>
0N/A *
0N/A * @author Alan Kaminsky
0N/A */
0N/Apublic final class JobPrioritySupported extends IntegerSyntax
0N/A implements SupportedValuesAttribute {
0N/A
0N/A private static final long serialVersionUID = 2564840378013555894L;
0N/A
0N/A
0N/A /**
0N/A * Construct a new job priority supported attribute with the given integer
0N/A * value.
0N/A *
0N/A * @param value Number of different job priority levels supported.
0N/A *
0N/A * @exception IllegalArgumentException
0N/A * (Unchecked exception) Thrown if <CODE>value</CODE> is less than 1
0N/A * or greater than 100.
0N/A */
0N/A public JobPrioritySupported(int value) {
0N/A super (value, 1, 100);
0N/A }
0N/A
0N/A /**
0N/A * Returns whether this job priority supported attribute is equivalent to
0N/A * the passed in object. To be equivalent, all of the following conditions
0N/A * must be true:
0N/A * <OL TYPE=1>
0N/A * <LI>
0N/A * <CODE>object</CODE> is not null.
0N/A * <LI>
0N/A * <CODE>object</CODE> is an instance of class JobPrioritySupported.
0N/A * <LI>
0N/A * This job priority supported attribute's value and
0N/A * <CODE>object</CODE>'s value are equal.
0N/A * </OL>
0N/A *
0N/A * @param object Object to compare to.
0N/A *
0N/A * @return True if <CODE>object</CODE> is equivalent to this job
0N/A * priority supported attribute, false otherwise.
0N/A */
0N/A public boolean equals (Object object) {
0N/A
0N/A return (super.equals(object) &&
0N/A object instanceof JobPrioritySupported);
0N/A }
0N/A
0N/A
0N/A /**
0N/A * Get the printing attribute class which is to be used as the "category"
0N/A * for this printing attribute value.
0N/A * <P>
0N/A * For class JobPrioritySupported, the
0N/A * category is class JobPrioritySupported itself.
0N/A *
0N/A * @return Printing attribute class (category), an instance of class
0N/A * {@link java.lang.Class java.lang.Class}.
0N/A */
0N/A public final Class<? extends Attribute> getCategory() {
0N/A return JobPrioritySupported.class;
0N/A }
0N/A
0N/A /**
0N/A * Get the name of the category of which this attribute value is an
0N/A * instance.
0N/A * <P>
0N/A * For class JobPrioritySupported, the
0N/A * category name is <CODE>"job-priority-supported"</CODE>.
0N/A *
0N/A * @return Attribute category name.
0N/A */
0N/A public final String getName() {
0N/A return "job-priority-supported";
0N/A }
0N/A
0N/A}