Packagecore
Classpublic class uri
Inheritanceuri Inheritance Object

The core uri class. note: - no external dependencies - this is a non-validating parser for ex, we don;t validate a scheme - this is a non-blocking parser, we don't throw errors



Public Properties
 PropertyDefined By
  authority : String
[read-only] Indicates authority value of the uri.
uri
  fragment : String
Determinates the fragment value of the uri.
uri
  host : String
Determinates the host value of the uri.
uri
  path : String
Determinates the path value of the uri.
uri
  port : int
Determinates the port value of the uri.
uri
  query : String
Determinates the user info value of the uri.
uri
  scheme : String
Determinates the scheme value of the uri.
uri
  source : String
[read-only] Determinates the source value of the uri.
uri
  userinfo : String
[read-only] Determinates the user info value of the uri.
uri
Public Methods
 MethodDefined By
  
uri(raw:String)
Creates a new uri instance.
uri
  
toString():String
Returns the String representation of the object.
uri
  
valueOf():String
Returns the primitive value of the object.
uri
Property Detail
authorityproperty
authority:String  [read-only]

Indicates authority value of the uri.


Implementation
    public function get authority():String
fragmentproperty 
fragment:String

Determinates the fragment value of the uri.


Implementation
    public function get fragment():String
    public function set fragment(value:String):void
hostproperty 
host:String

Determinates the host value of the uri.


Implementation
    public function get host():String
    public function set host(value:String):void
pathproperty 
path:String

Determinates the path value of the uri.


Implementation
    public function get path():String
    public function set path(value:String):void
portproperty 
port:int

Determinates the port value of the uri.


Implementation
    public function get port():int
    public function set port(value:int):void
queryproperty 
query:String

Determinates the user info value of the uri.


Implementation
    public function get query():String
    public function set query(value:String):void
schemeproperty 
scheme:String

Determinates the scheme value of the uri.


Implementation
    public function get scheme():String
    public function set scheme(value:String):void
sourceproperty 
source:String  [read-only]

Determinates the source value of the uri.


Implementation
    public function get source():String
userinfoproperty 
userinfo:String  [read-only]

Determinates the user info value of the uri.


Implementation
    public function get userinfo():String
Constructor Detail
uri()Constructor
public function uri(raw:String)

Creates a new uri instance.

Parameters
raw:String — The value expression of the uri.
Method Detail
toString()method
public function toString():String

Returns the String representation of the object.

Returns
String — the String representation of the object.
valueOf()method 
public function valueOf():String

Returns the primitive value of the object.

Returns
String — the primitive value of the object.