- java.lang.Object
-
- javax.print.attribute.EnumSyntax
-
- javax.print.attribute.standard.ReferenceUriSchemesSupported
-
- 实现的所有接口
-
Serializable
,Cloneable
,Attribute
public class ReferenceUriSchemesSupported extends EnumSyntax implements Attribute
类ReferenceUriSchemesSupported
是打印属性类,枚举,表示“URI方案”,例如“http:”或“ftp:”,打印机可以使用它来检索存储在URI
位置的打印数据。 如果打印机支持打印数据表示类为"java.net.URL"
doc"java.net.URL"
,则打印机使用类ReferenceUriSchemesSupported
实例来通告它可以接受的URI
方案。 可接受的URI
方案作为服务属性包含在查找服务中; 这使客户可以搜索可以使用某种URI
方案获取打印数据的打印机。 也可以使用接口PrintService
的功能方法查询可接受的URI
方案。 但是,ReferenceUriSchemesSupported
属性仅用于确定可接受的URI
方案,它们永远不会包含在文档,打印请求,打印作业或打印服务的属性集中。互联网号码分配机构维护official list of URI schemes 。
ReferenceUriSchemesSupported
类定义了广泛使用的URI
方案的枚举值。 支持其他URI
方案的打印机可以在类ReferenceUriSchemesSupported
的子类中定义它们。IPP兼容性:
getName()
返回的类别名称是IPP属性名称。 枚举的整数值是IPP枚举值。toString()
方法返回属性值的IPP字符串表示形式。- 另请参见:
- Serialized Form
-
-
字段汇总
字段 变量和类型 字段 描述 static ReferenceUriSchemesSupported
FILE
特定于主机的文件名。static ReferenceUriSchemesSupported
FTP
文件传输协议(FTP)。static ReferenceUriSchemesSupported
GOPHER
Gopher协议。static ReferenceUriSchemesSupported
HTTP
超文本传输协议(HTTP)。static ReferenceUriSchemesSupported
HTTPS
安全的超文本传输协议(HTTPS)。static ReferenceUriSchemesSupported
NEWS
USENET新闻。static ReferenceUriSchemesSupported
NNTP
使用网络新闻传输协议(NNTP)的USENET新闻。static ReferenceUriSchemesSupported
WAIS
广域信息服务器(WAIS)协议。
-
构造方法摘要
构造方法 变量 构造器 描述 protected
ReferenceUriSchemesSupported(int value)
使用给定的整数值构造新的引用URI
方案枚举值。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 类<? extends Attribute>
getCategory()
获取将用作此打印属性值的“类别”的打印属性类。protected EnumSyntax[]
getEnumValueTable()
返回类ReferenceUriSchemesSupported
的枚举值表。String
getName()
获取此属性值为实例的类别的名称。protected String[]
getStringTable()
返回类ReferenceUriSchemesSupported
的字符串表。-
声明方法的类 javax.print.attribute.EnumSyntax
clone, getOffset, getValue, hashCode, readResolve, toString
-
-
-
-
字段详细信息
-
FTP
public static final ReferenceUriSchemesSupported FTP
文件传输协议(FTP)。
-
HTTP
public static final ReferenceUriSchemesSupported HTTP
超文本传输协议(HTTP)。
-
HTTPS
public static final ReferenceUriSchemesSupported HTTPS
安全的超文本传输协议(HTTPS)。
-
GOPHER
public static final ReferenceUriSchemesSupported GOPHER
Gopher协议。
-
NEWS
public static final ReferenceUriSchemesSupported NEWS
USENET新闻。
-
NNTP
public static final ReferenceUriSchemesSupported NNTP
使用网络新闻传输协议(NNTP)的USENET新闻。
-
WAIS
public static final ReferenceUriSchemesSupported WAIS
广域信息服务器(WAIS)协议。
-
FILE
public static final ReferenceUriSchemesSupported FILE
特定于主机的文件名。
-
-
方法详细信息
-
getStringTable
protected String[] getStringTable()
返回类ReferenceUriSchemesSupported
的字符串表。- 重写:
-
getStringTable
类EnumSyntax
- 结果
- 字符串表
-
getEnumValueTable
protected EnumSyntax[] getEnumValueTable()
返回类ReferenceUriSchemesSupported
的枚举值表。- 重写:
-
getEnumValueTable
类EnumSyntax
- 结果
- 价值表
-
getCategory
public final 类<? extends Attribute> getCategory()
获取将用作此打印属性值的“类别”的打印属性类。对于类
ReferenceUriSchemesSupported
和任何供应商定义的子类,类别为ReferenceUriSchemesSupported
类。- Specified by:
-
getCategory
接口Attribute
- 结果
-
打印属性类(类别),类
java.lang.Class
的实例
-
-