public class DataBindingPattern
extends java.lang.Object
Encapsulates a regular expression that can be used for data binding.
Constructor and Description |
---|
DataBindingPattern(java.lang.String pattern)
Construct a new binding pattern using the
pattern regular expression text. |
Modifier and Type | Method and Description |
---|---|
StringList |
match(java.lang.String text)
Search for a match this pattern's regular expression with the specified
text . |
java.lang.String |
toString() |
public DataBindingPattern(java.lang.String pattern)
Construct a new binding pattern using the pattern
regular expression text.
pattern
- Regular expression pattern.public StringList match(java.lang.String text)
Search for a match this pattern's regular expression with the specified text
.
text
- Specified text for matching.public java.lang.String toString()
toString
in class java.lang.Object