to top
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

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.