SUMMARY: MODULE | CLASS | TYPE | PROC | VAR | CONST | DETAIL: TYPE | PROC | VAR | CONST |
Object URI URI:Scheme:Hierarchical
Class List | |
URI |
Class Summary: URI [Detail] | |
+---Object.Object | +---URI.URI | +---URI.HierarchicalURI | +---URI:Scheme:Hierarchical.Generic | +--URI:Scheme:NNTP.URI | |
Inherited Fields | |
From URI.HierarchicalURI: From URI:Scheme:Hierarchical.Generic: | |
Constructor Summary | |
Init(URI, STRING, Authority, Query) | |
New(STRING, Authority, Query): URI | |
NewPrototype(STRING): URI | |
Method Summary | |
Clone(): URI Creates a deep copy of the URI referenced by http. | |
NewAuthority(): Authority Creates a new instance of the authority component of URI http. | |
NewQuery(): Query Creates a new instance of the query component of URI http. | |
Inherited Methods | |
From Object.Object: From URI.URI: From URI.HierarchicalURI: From URI:Scheme:Hierarchical.Generic: |
Class Detail: URI |
Constructor Detail |
PROCEDURE Init(http: URI; schemeId: STRING; authority: Authority; query: Query)
PROCEDURE New(schemeId: STRING; authority: Authority; query: Query): URI
PROCEDURE NewPrototype(scheme: STRING): URI
Method Detail |
PROCEDURE (http: URI) Clone(): URI
Creates a deep copy of the URI referenced by http. That is, it creates a new instance of http and calls URI.Copy on it.
[Description inherited from Clone]
PROCEDURE (http: URI) NewAuthority(): Authority
Creates a new instance of the authority component of URI http. The new object is subsequently filled in by parsing the authority component of the URI string (see URI:Authority.ParseAuthority).
[Description inherited from NewAuthority]
Redefines: NewAuthority, NewAuthority
PROCEDURE (http: URI) NewQuery(): Query
Creates a new instance of the query component of URI http. The new object is subsequently filled in by parsing the query component of the URI string (see URI:Query.ParseQuery).
[Description inherited from NewQuery]