org.wanghy.regex
Interface Regex

All Known Implementing Classes:
JdkRegex, Perl5Regex

public interface Regex

Represents an inmutable regular expression.

Version:
$Revision: 1.1 $ $Date: 2005/03/09 01:51:23 $
Author:
Alex Ruiz

Method Summary
 Match match(java.lang.String input)
          Attempts to match the entire input sequence against the given regular expression.
 

Method Detail

match

public Match match(java.lang.String input)
Attempts to match the entire input sequence against the given regular expression.

Parameters:
input - the input sequence.
Returns:
the result of the match operation.


Copyright © 2005 Alex Ruiz. All Rights Reserved.