org.tuckey.web.filters.urlrewrite.utils
Interface StringMatchingMatcher

All Known Implementing Classes:
RegexMatcher, WildcardMatcher

public interface StringMatchingMatcher

A generic interface for StringMatching, method signature matches java.util.Matcher.

See Also:
Matcher

Method Summary
 int end()
           
 boolean find()
           
 String group(int groupId)
           
 int groupCount()
           
 boolean isFound()
           
 boolean isMultipleMatchingSupported()
           
 void reset()
           
 int start()
           
 

Method Detail

find

boolean find()

isMultipleMatchingSupported

boolean isMultipleMatchingSupported()

start

int start()

end

int end()

reset

void reset()

isFound

boolean isFound()

groupCount

int groupCount()

group

String group(int groupId)


Copyright © 2001-2012 Paul Tuckey. All Rights Reserved.