public static interface Proxy.LinkRO
node.link
- read-only.
None of the getters will throw an exception, even if you call, e.g. getNode() on a File link. Instead they will return null. To check the link type evaluate getUri().getScheme() or the result of the special getters.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
get()
Deprecated.
since 1.2 - use
getText() instead. |
java.io.File |
getFile()
returns the link as File if defined and if the link target is a valid File URI and null otherwise.
|
Proxy.Node |
getNode()
returns the link as Node if defined and if the link target is a valid local link to a node and null otherwise.
|
java.lang.String |
getText()
returns the link text, a stringified URI, if a link is defined and null otherwise.
|
java.net.URI |
getUri()
returns the link as URI if defined and null otherwise.
|
java.lang.String getText()
java.net.URI getUri()
java.io.File getFile()
File.File(URI)
Proxy.Node getNode()
java.lang.String get()
getText()
instead.