-
public interface URIDataAdapter
-
-
Method Summary
Modifier and Type Method Description abstract Stringscheme()The scheme of this URI. abstract Stringhost()The host of this URI. abstract intport()The port number of this URI. abstract Stringpath()The decoded path of this URI. abstract Stringfragment()The decoded fragment of this URI. abstract Stringquery()The decoded query string of this URI. abstract booleansupportsRaw()Does this adapter support raw encoded access? abstract StringrawPath()The raw path of this URI. abstract booleanhasPlusEncodedSpaces()Does the raw query string have '+' encoded spaces? abstract StringrawQuery()The raw query string of this URI. abstract Stringraw()The raw path(?query) of this URI. abstract booleanisValid()The URI is a valid one or not (looks malformed) -
-
Method Detail
-
port
abstract int port()
The port number of this URI.
-
supportsRaw
abstract boolean supportsRaw()
Does this adapter support raw encoded access?
-
hasPlusEncodedSpaces
abstract boolean hasPlusEncodedSpaces()
Does the raw query string have '+' encoded spaces?
-
isValid
abstract boolean isValid()
The URI is a valid one or not (looks malformed)
-
-
-
-