Package com.solibri.smc.api.model
Interface Hyperlink
-
public interface Hyperlink
Represents a hyperlink in Solibri.A hyperlink may refer to a resource by specifying a URL or a file path.
- Since:
- 9.10.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<String>
getTopic()
Returns the topic of this hyperlink.URI
getUri()
Returns the URI of the resource this hyperlink links to.
-
-
-
Method Detail
-
getTopic
Optional<String> getTopic()
Returns the topic of this hyperlink. If no topic is specified, then returns empty.- Returns:
- the topic of this hyperlink
- Since:
- 9.10.4
-
getUri
URI getUri()
Returns the URI of the resource this hyperlink links to.The URI may be an URL or a path to a file. The path can be relative or absolute.
- Returns:
- the URI of the resource this hyperlink links to
- Since:
- 9.10.4
-
-