Here you can find the source of isAbsoluteUrl(String ref)
public static boolean isAbsoluteUrl(String ref)
//package com.java2s; public class Main { public static boolean isAbsoluteUrl(String ref) { return ref.startsWith("http:") || ref.startsWith("https:") || ref.startsWith("urn:uuid:") || ref.startsWith("urn:oid:"); }/*from w w w . j a v a 2s .c o m*/ }