Java URI Create uri(String uri)

Here you can find the source of uri(String uri)

Description

uri

License

Apache License

Declaration

public static URI uri(String uri) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.net.URI;

public class Main {
    public static URI uri(String uri) {
        return URI.create(uri);
    }/*from w w w.  java 2  s. c  om*/
}

Related

  1. stringToURI(String[] str)
  2. uri(String host, String prefix, String path)
  3. uri(String path)
  4. uri(String str)
  5. uri(String uri)
  6. uri(String uriStr)
  7. uri(String value)
  8. uri(String value)
  9. uri(URI uri)