Most visited

Recently visited

Added in API level 1

XMLConstants

public final class XMLConstants
extends Object

java.lang.Object
   ↳ javax.xml.XMLConstants


将基本XML值包含为常量的实用程序类。

也可以看看:

Summary

Constants

String DEFAULT_NS_PREFIX

前缀用于表示默认的XML命名空间。

String FEATURE_SECURE_PROCESSING

用于安全处理的功能。

String NULL_NS_URI

名称空间URI用于表示没有名称空间。

String RELAXNG_NS_URI

RELAX NG命名空间URI。

String W3C_XML_SCHEMA_INSTANCE_NS_URI

W3C XML模式实例名称空间URI。

String W3C_XML_SCHEMA_NS_URI

W3C XML模式名称空间URI。

String W3C_XPATH_DATATYPE_NS_URI

W3C XPath数据类型命名空间URI。

String XMLNS_ATTRIBUTE

用于指定XML名称空间声明的官方XML属性。

String XMLNS_ATTRIBUTE_NS_URI

用于指定XML名称空间声明的官方XML属性, XMLConstants.XMLNS_ATTRIBUTE ,名称空间名称URI。

String XML_DTD_NS_URI

XML文档类型声明名称空间URI作为任意值。

String XML_NS_PREFIX

官方的XML命名空间前缀。

String XML_NS_URI

官方的XML命名空间名称URI。

Inherited methods

From class java.lang.Object

Constants

DEFAULT_NS_PREFIX

Added in API level 1
String DEFAULT_NS_PREFIX

前缀用于表示默认的XML命名空间。

由XML规范定义为“”。

也可以看看:

常数值:“”

FEATURE_SECURE_PROCESSING

Added in API level 1
String FEATURE_SECURE_PROCESSING

用于安全处理的功能。

  • true instructs the implementation to process XML securely. This may set limits on XML constructs to avoid conditions such as denial of service attacks.
  • false instructs the implementation to process XML according to the letter of the XML specifications ignoring security issues such as limits on XML constructs to avoid conditions such as denial of service attacks.

常量值:“http://javax.xml.XMLConstants/feature/secure-processing”

NULL_NS_URI

Added in API level 1
String NULL_NS_URI

名称空间URI用于表示没有名称空间。

命名空间规范定义为“”。

也可以看看:

常数值:“”

RELAXNG_NS_URI

Added in API level 1
String RELAXNG_NS_URI

RELAX NG命名空间URI。

定义为“ http://relaxng.org/ns/structure/1.0 ”。

也可以看看:

常数值:“http://relaxng.org/ns/structure/1.0”

W3C_XML_SCHEMA_INSTANCE_NS_URI

Added in API level 1
String W3C_XML_SCHEMA_INSTANCE_NS_URI

W3C XML模式实例名称空间URI。

定义为“ http://www.w3.org/2001/XMLSchema-instance ”。

也可以看看:

常量值:“http://www.w3.org/2001/XMLSchema-instance”

W3C_XML_SCHEMA_NS_URI

Added in API level 1
String W3C_XML_SCHEMA_NS_URI

W3C XML模式名称空间URI。

定义为“ http://www.w3.org/2001/XMLSchema ”。

也可以看看:

常量值:“http://www.w3.org/2001/XMLSchema”

W3C_XPATH_DATATYPE_NS_URI

Added in API level 1
String W3C_XPATH_DATATYPE_NS_URI

W3C XPath数据类型命名空间URI。

定义为“ http://www.w3.org/2003/11/xpath-datatypes ”。

也可以看看:

常量值:“http://www.w3.org/2003/11/xpath-datatypes”

XMLNS_ATTRIBUTE

Added in API level 1
String XMLNS_ATTRIBUTE

用于指定XML名称空间声明的官方XML属性。

也不是一个有效的前缀使用。 由XML规范定义为“ xmlns ”。

也可以看看:

常量值:“xmlns”

XMLNS_ATTRIBUTE_NS_URI

Added in API level 1
String XMLNS_ATTRIBUTE_NS_URI

用于指定XML名称空间声明的官方XML属性, XMLConstants.XMLNS_ATTRIBUTE ,名称空间名称URI。

由XML规范定义为“ http://www.w3.org/2000/xmlns/ ”。

也可以看看:

常量值:“http://www.w3.org/2000/xmlns/”

XML_DTD_NS_URI

Added in API level 1
String XML_DTD_NS_URI

XML文档类型声明名称空间URI作为任意值。

由于没有任何现有的标准正式定义,任意定义为“ http://www.w3.org/TR/REC-xml ”。

常量值:“http://www.w3.org/TR/REC-xml”

XML_NS_PREFIX

Added in API level 1
String XML_NS_PREFIX

官方的XML命名空间前缀。

由XML规范定义为“ xml ”。

也可以看看:

常量值:“xml”

XML_NS_URI

Added in API level 1
String XML_NS_URI

官方的XML命名空间名称URI。

由XML规范定义为“ http://www.w3.org/XML/1998/namespace ”。

也可以看看:

常量值:“http://www.w3.org/XML/1998/namespace”

Hooray!