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

/libcore/benchmarks/src/benchmarks/regression/
H A DEqualsHashCodeBenchmark.java21 import java.net.URI;
26 URI() { method in enum:EqualsHashCodeBenchmark.Type
28 return new URI(text);
54 b1 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
55 b2 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
/libcore/luni/src/main/java/java/net/
H A DURI.java33 * <h3>Parts of a URI</h3>
34 * A URI is composed of many parts. This class can both parse URI strings into
35 * parts and compose URI strings from parts. For example, consider the parts of
36 * this URI:
59 * URL}, you can use {@link #toURL} to convert an absolute URI to a URL.
62 * have the absolute URI that a relative URI is relative to, you can use {@link
63 * #resolve} to compute the referenced absolute URI. Symmetrically, you can use
64 * {@link #relativize} to compute the relative URI fro
132 public final class URI implements Comparable<URI>, Serializable { class in inherits:Comparable,Serializable
196 private URI() {} method in class:URI
203 public URI(String spec) throws URISyntaxException { method in class:URI
212 public URI(String scheme, String schemeSpecificPart, String fragment) method in class:URI
235 public URI(String scheme, String userInfo, String host, int port, String path, String query, method in class:URI
297 public URI(String scheme, String host, String path, String fragment) throws URISyntaxException { method in class:URI
306 public URI(String scheme, String authority, String path, String query, method in class:URI
[all...]

Completed in 119 milliseconds