Uses of Interface
javax.print.attribute.AttributeSet
-
Packages that use AttributeSet 软件包 描述 javax.print 提供Java™打印服务API的主要类和接口。javax.print.attribute 提供描述Java™打印服务属性类型的类和接口,以及如何将它们收集到属性集中。 -
-
Uses of AttributeSet in javax.print
Methods in javax.print that return AttributeSet 变量和类型 方法 描述 AttributeSet
PrintService. getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes)
标识特定DocFlavor
上下文中不支持打印请求的属性。Methods in javax.print with parameters of type AttributeSet 变量和类型 方法 描述 abstract MultiDocPrintService[]
PrintServiceLookup. getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes)
不是由应用程序直接调用。abstract PrintService[]
PrintServiceLookup. getPrintServices(DocFlavor flavor, AttributeSet attributes)
找到可以肯定确认的服务,以支持指定的属性和DocFlavors
的组合。Object
PrintService. getSupportedAttributeValues(类<? extends Attribute> category, DocFlavor flavor, AttributeSet attributes)
确定在为此打印服务设置作业时客户端可以在给定类别中指定的打印属性值。AttributeSet
PrintService. getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes)
标识特定DocFlavor
上下文中不支持打印请求的属性。boolean
PrintService. isAttributeValueSupported(Attribute attrval, DocFlavor flavor, AttributeSet attributes)
确定客户端在为此PrintService设置作业时是否可以指定给定的打印属性值。static MultiDocPrintService[]
PrintServiceLookup. lookupMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes)
MultiDoc
打印服务
能够打印MultiDocs
包含所有指定的docMultiDocs
。static PrintService[]
PrintServiceLookup. lookupPrintServices(DocFlavor flavor, AttributeSet attributes)
找到能够打印指定的DocFlavor
的打印服务。 -
Uses of AttributeSet in javax.print.attribute
Subinterfaces of AttributeSet in javax.print.attribute 变量和类型 接口 描述 interface
DocAttributeSet
接口DocAttributeSet
指定一组doc属性的接口,即实现接口DocAttribute
的打印属性。interface
PrintJobAttributeSet
接口PrintJobAttributeSet
指定一组打印作业属性的接口,即实现接口PrintJobAttribute
的打印属性。interface
PrintRequestAttributeSet
接口PrintRequestAttributeSet
指定一组打印请求属性的接口,即实现接口PrintRequestAttribute
的打印属性。interface
PrintServiceAttributeSet
接口PrintServiceAttributeSet
指定一组打印作业属性的接口,即实现接口PrintServiceAttribute
的打印属性。Classes in javax.print.attribute that implement AttributeSet 变量和类型 类 描述 class
HashAttributeSet
类HashAttributeSet
提供了具有哈希映射特征的AttributeSet
实现。class
HashDocAttributeSet
类HashDocAttributeSet
提供了一个属性集,它继承了类HashAttributeSet
的实现,并强制实现接口DocAttributeSet
的语义限制。class
HashPrintJobAttributeSet
类HashPrintJobAttributeSet
提供了一个属性集,它继承了类HashAttributeSet
的实现,并强制实现接口PrintJobAttributeSet
的语义限制。class
HashPrintRequestAttributeSet
类HashPrintRequestAttributeSet
从类继承其实现HashAttributeSet
和强制执行接口的语义限制PrintRequestAttributeSet
。class
HashPrintServiceAttributeSet
类HashPrintServiceAttributeSet
提供了一个属性集,它继承了类HashAttributeSet
的实现,并强制实现接口PrintServiceAttributeSet
的语义限制。Methods in javax.print.attribute that return AttributeSet 变量和类型 方法 描述 static AttributeSet
AttributeSetUtilities. synchronizedView(AttributeSet attributeSet)
创建给定属性集的同步视图。static AttributeSet
AttributeSetUtilities. unmodifiableView(AttributeSet attributeSet)
创建给定属性集的不可修改视图。Methods in javax.print.attribute with parameters of type AttributeSet 变量和类型 方法 描述 boolean
AttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。boolean
DocAttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。boolean
HashAttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。boolean
PrintJobAttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。boolean
PrintRequestAttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。boolean
PrintServiceAttributeSet. addAll(AttributeSet attributes)
将指定集中的所有元素添加到此属性。static AttributeSet
AttributeSetUtilities. synchronizedView(AttributeSet attributeSet)
创建给定属性集的同步视图。static AttributeSet
AttributeSetUtilities. unmodifiableView(AttributeSet attributeSet)
创建给定属性集的不可修改视图。Constructors in javax.print.attribute with parameters of type AttributeSet 构造器 描述 HashAttributeSet(AttributeSet attributes)
构造一个新的属性集,最初使用给定集合中的值填充。HashAttributeSet(AttributeSet attributes, 类<?> interfaceName)
Construct a new attribute set, initially populated with the values from the given set where the members of the attribute set are restricted to the given interface.
-