Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

UriPatternMatcher

extends Object
java.lang.Object
   ↳ org.apache.http.protocol.UriPatternMatcher

Class Overview

Maintains a map of objects keyed by a request URI pattern. Instances can be looked up by request URI.
Patterns may have three formats:

  • *
  • *<uri>
  • <uri>*

Summary

Public Constructors
UriPatternMatcher ()
Public Methods
Object lookup ( String requestURI)
void register ( String pattern, Object handler)
void setHandlers ( Map map)
void unregister ( String pattern)
Protected Methods
boolean matchUriRequestPattern ( String pattern, String requestUri)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public UriPatternMatcher ()

Added in API level 1

Public Methods

public Object lookup ( String requestURI)

Added in API level 1

public void register ( String pattern, Object handler)

Added in API level 1

public void setHandlers ( Map map)

Added in API level 1

public void unregister ( String pattern)

Added in API level 1

Protected Methods

protected boolean matchUriRequestPattern ( String pattern, String requestUri)

Added in API level 1