Searched defs:anyURI (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAnyURIDV.java28 * Represent the schema type "anyURI"
66 throw new InvalidDatatypeValueException("cvc-datatype-valid.1.2.1", new Object[]{content, "anyURI"});
103 // To encode special characters in anyURI, by using %HH to represent
106 private static String encode(String anyURI){ argument
107 int len = anyURI.length(), ch;
110 // for each character in the anyURI
113 ch = anyURI.charAt(i);
133 bytes = anyURI.substring(i).getBytes("UTF-8");
136 return anyURI;
167 return anyURI;
[all...]

Completed in 29 milliseconds