The append method of the WildcardExpression Class contains the following signatures:
append(WildcardExpression other)
append(WildcardExpression[] list)
append(String expr, int flags)
append(String expr)
Appends another expression to this expression.
public synchronized void append(WildcardExpression other);
other | The expression to append. |
IllegalArgumentException if the expressions are incompatible.
Adds a list of expressions to the expression. If any expressions fail to be added, the original expression is not affected.
public synchronized void append(WildcardExpression[] list);
list | The list of expressions to add. |
Appends another expression to this expression.
public synchronized void append(String expr, int flags);
expr | The expression to append. |
flags | Combination of one or more of the following flags for controlling constructing of the expression:
NO_WILDCARDS Note that CASE_SENSITIVE is not valid. The case-sensitivity of matching the new pattern is controlled by the existing case-sensitivity of the expression. |
IllegalArgumentException if the expression is invalid.
Appends another expression to this expression.
public void append(String expr);
expr | The expression to append. |
IllegalArgumentException if the expression is invalid.