public class RegularExpressionManager
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static org.apache.log4j.Logger |
log
Used for logging.
|
Constructor and Description |
---|
RegularExpressionManager() |
Modifier and Type | Method and Description |
---|---|
static RegularExpression |
getRegularExpressionByExpression(java.lang.String expression)
Gets a
RegularExpression by searching based
on its expression. |
static java.util.ArrayList |
getRegularExpressions()
Gets the
ArrayList containing the
RegularExpression objects. |
public static java.util.ArrayList getRegularExpressions()
ArrayList
containing the
RegularExpression
objects.ArrayList
.public static RegularExpression getRegularExpressionByExpression(java.lang.String expression)
RegularExpression
by searching based
on its expression.expression
- The expression to search for.RegularExpression
, if found; null, otherwise.