JavaTM 2 Platform
Standard Ed. 6

javax.print.attribute.standard
類別 CopiesSupported

java.lang.Object
  繼承者 javax.print.attribute.SetOfIntegerSyntax
      繼承者 javax.print.attribute.standard.CopiesSupported
所有已實作的介面:
Serializable, Cloneable, Attribute, SupportedValuesAttribute

public final class CopiesSupported
extends SetOfIntegerSyntax
implements SupportedValuesAttribute

CopiesSupported 類別是列印屬性類別,它是一個整數集,給出了支持的 Copies 屬性的值。它限制為單個連續的整數範圍,不允許存在多個非重疊範圍。

IPP Compatibility: CopiesSupported 屬性的規範陣列形式給出了要包含於 IPP "copies-supported" 屬性中的副本範圍的下邊界和上邊界。有關規範陣列形式的解釋,請參見 SetOfIntegerSyntaxgetName() 所返回的類別別名稱給出了 IPP 屬性名稱。

另請參見:
序列化表格

建構子摘要
CopiesSupported(int member)
          建構一個新的支持副本的屬性,它包含單個整數。
CopiesSupported(int lowerBound, int upperBound)
          建構一個新的支持副本的屬性,它包含一個整數範圍。
 
方法摘要
 boolean equals(Object object)
          返回支持副本的此屬性是否等於傳入的物件。
 Class<? extends Attribute> getCategory()
          獲取將被用作此列印屬性值的“類別別”的列印屬性類別。
 String getName()
          獲取類別別名稱,這裡此屬性值是該類別別的實例。
 
從類別 javax.print.attribute.SetOfIntegerSyntax 繼承的方法
contains, contains, getMembers, hashCode, next, toString
 
從類別 java.lang.Object 繼承的方法
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

CopiesSupported

public CopiesSupported(int member)
建構一個新的支持副本的屬性,它包含單個整數。即僅支持 Copies 的某個值。

參數:
member - 集合成員。
拋出:
IllegalArgumentException - (未檢查的異常)如果 member 小於 1,則拋出此異常。

CopiesSupported

public CopiesSupported(int lowerBound,
                       int upperBound)
建構一個新的支持副本的屬性,它包含一個整數範圍。即僅支持某個範圍內的 Copies 值。

參數:
lowerBound - 範圍的下邊界。
upperBound - 範圍的上邊界。
拋出:
IllegalArgumentException - (未檢查的異常)如果指定了 null 範圍,或指定了 lowerBound 小於 1 的非 null 範圍,則拋出此異常。
方法詳細資訊

equals

public boolean equals(Object object)
返回支持副本的此屬性是否等於傳入的物件。若要相等,以下所有條件都必須為 true:
  1. object 不為 null。
  2. object 為 CopiesSupported 類別的實例。
  3. 支持副本的此屬性的成員與 object 的成員不相同。

覆寫:
類別 SetOfIntegerSyntax 中的 equals
參數:
object - 要比較的 Object。
返回:
如果 object 等於此支持副本的屬性,則返回 true,否則返回 false。
另請參見:
Object.hashCode(), Hashtable

getCategory

public final Class<? extends Attribute> getCategory()
獲取將被用作此列印屬性值的“類別別”的列印屬性類別。

對於 CopiesSupported 類別,類別別為 CopiesSupported 類別本身。

指定者:
介面 Attribute 中的 getCategory
返回:
列印屬性類別(類別別),它是 java.lang.Class 類別的實例。

getName

public final String getName()
獲取類別別名稱,這裡此屬性值是該類別別的實例。

對於 CopiesSupported 類別,類別別名稱為 "copies-supported"

指定者:
介面 Attribute 中的 getName
返回:
屬性類別別名稱。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only