Class Overview
A collection of matchers for Uris, which can match Uris on their properties (host, path,
...).
Summary
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
|
Public Methods
public
static
Matcher<Uri>
hasHost
(Matcher<String> hostMatcher)
| Parameters |
hostMatcher |
Matcher |
public
static
Matcher<Uri>
hasHost
(String host)
public
static
Matcher<Uri>
hasParamWithName
(Matcher<String> paramName)
| Parameters |
paramName |
Matcher |
public
static
Matcher<Uri>
hasParamWithName
(String paramName)
| Parameters |
paramName |
String |
public
static
Matcher<Uri>
hasParamWithValue
(String paramName, String paramVal)
| Parameters |
paramName |
String |
paramVal |
String |
public
static
Matcher<Uri>
hasParamWithValue
(Matcher<String> paramName, Matcher<String> paramVal)
| Parameters |
paramName |
Matcher |
paramVal |
Matcher |
public
static
Matcher<Uri>
hasPath
(String pathName)
| Parameters |
pathName |
String |
public
static
Matcher<Uri>
hasPath
(Matcher<String> pathName)
| Parameters |
pathName |
Matcher |
public
static
Matcher<Uri>
hasScheme
(String scheme)
public
static
Matcher<Uri>
hasScheme
(Matcher<String> schemeMatcher)
| Parameters |
schemeMatcher |
Matcher |
public
static
Matcher<Uri>
hasSchemeSpecificPart
(Matcher<String> schemeMatcher, Matcher<String> schemeSpecificPartMatcher)
| Parameters |
schemeMatcher |
Matcher |
schemeSpecificPartMatcher |
Matcher |
public
static
Matcher<Uri>
hasSchemeSpecificPart
(String scheme, String schemeSpecificPart)
| Parameters |
scheme |
String |
schemeSpecificPart |
String |