Java URI Value Check isSystemIdentifier(URI localIdentifier)

Here you can find the source of isSystemIdentifier(URI localIdentifier)

Description

is System Identifier

License

Open Source License

Declaration

public static boolean isSystemIdentifier(URI localIdentifier) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.net.URI;

public class Main {
    public static URI LOCAL_SYSTEM_IDENTIFIER;

    public static boolean isSystemIdentifier(URI localIdentifier) {
        return localIdentifier.normalize().toString().equals(LOCAL_SYSTEM_IDENTIFIER.normalize().toString());
    }/*  w  w w.  ja  v a 2 s  .c o m*/
}

Related

  1. isRoot(URI base)
  2. isRoot(URI uri)
  3. isSecure(final URI uri)
  4. isSecure(URI uri)
  5. isShortTcpURI(URI resource)
  6. isType(URI uri, Class clazz)
  7. isType(URI uri, String name)
  8. isURI(Class type)
  9. isURI(String plainString)