Package io.deephaven.uri
Interface StructuredUri
- All Known Subinterfaces:
DeephavenUri
- All Known Implementing Classes:
ApplicationUri
,CustomUri
,DeephavenUriBase
,FieldUri
,QueryScopeUri
,RemoteUri
,StructuredUriBase
public interface StructuredUri
A structured URI is an object which can be represented in serialized form as a
URI
; and subsequently, can be
deserialized back into the same object.- See Also:
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiontarget
(DeephavenTarget target) Wraps upthis
URI as aremote URI
.toString()
The URI string.toURI()
The URI.<V extends StructuredUri.Visitor>
Vwalk
(V visitor)
-
Method Details
-
toURI
URI toURI()The URI.- Returns:
- the URI.
-
target
Wraps upthis
URI as aremote URI
.- Parameters:
target
- the target- Returns:
- the remote URI
-
toString
String toString()The URI string. -
walk
-