Methods summary
	
		| 
			
			 public 
			
			
			 |  | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setScheme( string $value )
			
Sets the scheme part of URI. 
			
Sets the scheme part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getScheme( )
			
Returns the scheme part of URI. 
			
Returns the scheme part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setUser( string $value )
			
Sets the user name part of URI. 
			
Sets the user name part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getUser( )
			
Returns the user name part of URI. 
			
Returns the user name part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setPassword( string $value )
			
Sets the password part of URI. 
			
Sets the password part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getPassword( )
			
Returns the password part of URI. 
			
Returns the password part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setHost( string $value )
			
Sets the host part of URI. 
			
Sets the host part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getHost( )
			
Returns the host part of URI. 
			
Returns the host part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setPort( string $value )
			
Sets the port part of URI. 
			
Sets the port part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getPort( )
			
Returns the port part of URI. 
			
Returns the port part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setPath( string $value )
			
Sets the path part of URI. 
			
Sets the path part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getPath( )
			
Returns the path part of URI. 
			
Returns the path part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setQuery( string|array $value )
			
Sets the query part of URI. 
			
Sets the query part of URI. ParametersReturns | 
	
		| 
			
			 public 
			
			
			 | 
		#
		appendQuery( string|array $value )
			
Appends the query part of URI. 
			
Appends the query part of URI. Parameters | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getQuery( )
			
Returns the query part of URI. 
			
Returns the query part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			Nette\Web\Uri | 
		#
		setFragment( string $value )
			
Sets the fragment part of URI. 
			
Sets the fragment part of URI. ParametersReturns | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getFragment( )
			
Returns the fragment part of URI. 
			
Returns the fragment part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getAbsoluteUri( )
			
Returns the entire URI including query string and fragment. 
			
Returns the entire URI including query string and fragment. Returns
					string
 | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getAuthority( )
			
Returns the [user[:pass]@]host[:port] part of URI. 
			
Returns the [user[:pass]@]host[:port] part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			string
			
			 | 
		#
		getHostUri( )
			
Returns the scheme and authority part of URI. 
			
Returns the scheme and authority part of URI. Returns
					string
 | 
	
		| 
			
			 public 
			boolean
			
			 | 
		#
		isEqual( string $uri )
			
URI comparsion (this object must be in canonical form). 
			
URI comparsion (this object must be in canonical form). ParametersReturns
					boolean
 | 
	
		| 
			
			 public 
			
			
			 | 
		#
		canonicalize( )
			
Transform to canonical form. 
			
Transform to canonical form. | 
	
		| 
			
			 public 
			string
			
			 |  | 
	
		| 
			
			 public static
			string
			
			 | 
		#
		unescape( string $s, string $reserved = '%;/?:@&=+$,' )
			
Similar to rawurldecode, but preserve reserved chars encoded. 
			
Similar to rawurldecode, but preserve reserved chars encoded. Parameters
					$sstringto decode
$reservedstringreserved characters
Returns
					string
 |