Java URI Value Check isURI(Class type)

Here you can find the source of isURI(Class type)

Description

is URI

License

LGPL

Declaration

public static boolean isURI(Class<?> type) 

Method Source Code

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

import java.net.URI;

public class Main {
    public static boolean isURI(Class<?> type) {
        return type.isAssignableFrom(URI.class);
    }/*w ww.  ja  va2  s  .  c om*/
}

Related

  1. isSecure(URI uri)
  2. isShortTcpURI(URI resource)
  3. isSystemIdentifier(URI localIdentifier)
  4. isType(URI uri, Class clazz)
  5. isType(URI uri, String name)
  6. isURI(String plainString)
  7. isURI(String uri)
  8. isUriValid(String uri)
  9. isUsingNonDefaultPort(URI uri)