1 3 9 10 package javax.xml; 11 12 26 27 public final class XMLConstants { 28 29 32 private XMLConstants() { 33 } 34 35 43 public static final String NULL_NS_URI = ""; 44 45 54 public static final String DEFAULT_NS_PREFIX = ""; 55 56 66 public static final String XML_NS_URI = 67 "http://www.w3.org/XML/1998/namespace"; 68 69 78 public static final String XML_NS_PREFIX = "xml"; 79 80 95 public static final String XMLNS_ATTRIBUTE_NS_URI = 96 "http://www.w3.org/2000/xmlns/"; 97 98 110 public static final String XMLNS_ATTRIBUTE = "xmlns"; 111 112 122 public static final String W3C_XML_SCHEMA_NS_URI = 123 "http://www.w3.org/2001/XMLSchema"; 124 125 135 public static final String W3C_XML_SCHEMA_INSTANCE_NS_URI = 136 "http://www.w3.org/2001/XMLSchema-instance"; 137 138 145 public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes"; 146 147 152 public static final String XML_DTD_NS_URI = "http://www.w3.org/TR/REC-xml"; 153 154 161 public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0"; 162 163 177 public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing"; 178 } 179 | Popular Tags |