The compile method of the WildcardExpression Class contains the following signatures:
compile(String expr, int flags)
compile(String expr)
Compiles the expression for faster evaluation. The previously compiled expression is lost when this method is called.
public synchronized void compile(String expr, int flags);
expr | The expression to compile. |
flags | Combination of one or more of the following flags: |
Compiles the expression for faster evaluation with default values.
public void compile(String expr);
expr | The expression to compile. |
The previously compiled expression is lost when this method is called. Case-sensitive matching and the evaluation of escaped wildcards are disabled for the compilation.