class RichURI extends AnyRef
Extends URI
with additional convenience methods.
- Alphabetic
- By Inheritance
- RichURI
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new RichURI(uri: URI)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
copy(scheme: String = uri.getScheme, userInfo: String = uri.getUserInfo, host: String = uri.getHost, port: Int = uri.getPort, path: String = uri.getPath, query: String = uri.getQuery, fragment: String = uri.getFragment): URI
Provides a case-class-like
copy
method for URI.Provides a case-class-like
copy
method for URI. Note that this method simply passes the individual components of this URI to the URI constructor that accepts each component individually. It is thus limited by the implementation restrictions of the relevant methods. -
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hasFragment: Boolean
Returns
true
if the fragment of the URI is defined. -
def
hasMarkerScheme: Boolean
Returns
true
if the scheme specific part of the URI is also a valid URI. -
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withoutFragment: URI
Returns a copy of the URI without the fragment.
-
def
withoutMarkerScheme: URI
Strips the wrapper scheme from this URI.
Strips the wrapper scheme from this URI. If the URI has a fragment, the fragment is transferred to the wrapped URI. If this URI does not have a marker scheme, it is returned unchanged.