Package org.radeox.regex
Interface Pattern
-
- All Known Implementing Classes:
JdkPattern
public interface Pattern
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetMultiline()Return whether the pattern is multiline or notStringgetRegex()Return a string representation of the regular expression
-
-
-
Method Detail
-
getRegex
String getRegex()
Return a string representation of the regular expression- Returns:
- String representation of the regular expression
-
getMultiline
boolean getMultiline()
Return whether the pattern is multiline or not- Returns:
- Ture if the pattern is multiline
-
-