List of utility methods to do URI to Local Name
String | getName(URI uri) get Name String name = null; if (uri != null) { String path = uri.getPath(); if (path != null) { int index = path.lastIndexOf('/'); name = path.substring(index + 1); return name; |
String | getNameSpace(URI uri) get Name Space return getNameSpace(uri.toString());
|
URI | getNameSpace(URI uri) get Name Space return getNameSpace(uri.toASCIIString());
|