public class AndCommandMessageFilter extends Object implements CommandMessageFilter
CommandMessageFilter implementation that matches whenever both supplied CommandMessageFilter
instances match.| Constructor and Description |
|---|
AndCommandMessageFilter(CommandMessageFilter first,
CommandMessageFilter second)
Initialize the filter to match when both the
first and the second filter match. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
matches(CommandMessage<?> commandMessage)
Indicates whether the given
commandMessage matches this filter. |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitand, negate, or@ConstructorProperties(value={"first","second"}) public AndCommandMessageFilter(CommandMessageFilter first, CommandMessageFilter second)
first and the second filter match.first - the first filter to matchsecond - the second filter to matchpublic boolean matches(@Nonnull CommandMessage<?> commandMessage)
CommandMessageFiltercommandMessage matches this filter.matches in interface CommandMessageFiltercommandMessage - the message to matchtrue if the command matches, otherwise falseCopyright © 2010–2025. All rights reserved.