/**@class android.os.PatternMatcher
 implements android.os.Parcelable

@extends java.lang.Object

 A simple pattern matcher, which is safe to use on untrusted data: it does
 not provide full reg-exp support, only simple globbing that can not be
 used maliciously.
*/
var PatternMatcher = {

/** Pattern type: the given pattern must exactly match the string it is
 tested against.
*/
PATTERN_LITERAL : "0",
/** Pattern type: the given pattern must match the
 beginning of the string it is tested against.
*/
PATTERN_PREFIX : "1",
/** Pattern type: the given pattern is interpreted with a
 simple glob syntax for matching against the string it is tested against.
 In this syntax, you can use the '*' character to match against zero or
 more occurrences of the character immediately before.  If the
 character before it is '.' it will match any character.  The character
 '\' can be used as an escape.  This essentially provides only the '*'
 wildcard part of a normal regexp. 
*/
PATTERN_SIMPLE_GLOB : "2",
/***/
CREATOR : "null",
/**
*/
getPath : function(  ) {},

/**
*/
getType : function(  ) {},

/**
*/
match : function(  ) {},

/**
*/
toString : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},


};