Class Uri
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.remoteviz.rendering.Uri
-
- All Implemented Interfaces:
java.lang.Cloneable
public class Uri extends Inventor implements java.lang.Cloneable
This class represents a Uniform Resource Identifier (URI). A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
java.lang.String
getAuthority()
Returns the Domain Name System (DNS) host name or IP address and the port number for a server.java.lang.String
getPath()
Returns the path of the URI.java.lang.String
getPathAndQuery()
Returns the Path and Query properties separated by a question mark (?).java.lang.String
getPort()
Returns the port number of this URI.java.lang.String
getQuery()
Returns any query information included in the specified URI.java.lang.String
getScheme()
Returns the scheme name for this URI.boolean
isAbsolute()
Returns whether theUri
instance is absolute.-
Methods inherited from class com.openinventor.inventor.Inventor
dispose, getNativeResourceHandle
-
-
-
-
Method Detail
-
clone
public java.lang.Object clone()
-
isAbsolute
public boolean isAbsolute()
Returns whether theUri
instance is absolute.
-
getPort
public java.lang.String getPort()
Returns the port number of this URI.
-
getAuthority
public java.lang.String getAuthority()
Returns the Domain Name System (DNS) host name or IP address and the port number for a server.
-
getQuery
public java.lang.String getQuery()
Returns any query information included in the specified URI.
-
getScheme
public java.lang.String getScheme()
Returns the scheme name for this URI.
-
getPathAndQuery
public java.lang.String getPathAndQuery()
Returns the Path and Query properties separated by a question mark (?).
-
getPath
public java.lang.String getPath()
Returns the path of the URI.
-
-