java.lang.Object
org.refcodes.matcher.AbstractMatcher<M>
org.refcodes.matcher.AbstractMatcheeMatcher<M>
org.refcodes.matcher.NotEqualWithMatcher<M>
- Type Parameters:
M
- The matchee type.
- All Implemented Interfaces:
Matchable<M>
,Matcher<M>
,org.refcodes.mixin.AliasAccessor
,org.refcodes.schema.Schemable
A NOT EQUAL WITH
Matcher
, comparing its matchee with the matchee
provided to the isMatching(Object)
method for equality.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.mixin.AliasAccessor
org.refcodes.mixin.AliasAccessor.AliasBuilder<B extends org.refcodes.mixin.AliasAccessor.AliasBuilder<B>>, org.refcodes.mixin.AliasAccessor.AliasMutator, org.refcodes.mixin.AliasAccessor.AliasProperty
-
Field Summary
Fields inherited from class org.refcodes.matcher.AbstractMatcheeMatcher
_matchee
-
Constructor Summary
ConstructorDescriptionNotEqualWithMatcher
(M aMatchee) Constructs a NOT EQUAL WITHMatcher
, comparing its matchee with the matchee provided to theisMatching(Object)
method for equality. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isMatching
(M aMatchee) Tests whether the given event is matching the mathcer's criteria.Methods inherited from class org.refcodes.matcher.AbstractMatcheeMatcher
toSchema
Methods inherited from class org.refcodes.matcher.AbstractMatcher
getAlias
-
Field Details
-
ALIAS
- See Also:
-
-
Constructor Details
-
NotEqualWithMatcher
Constructs a NOT EQUAL WITHMatcher
, comparing its matchee with the matchee provided to theisMatching(Object)
method for equality.- Parameters:
aMatchee
- The matchee with which to match.
-
-
Method Details
-
isMatching
Tests whether the given event is matching the mathcer's criteria.- Parameters:
aMatchee
- The matchee used for testing matchability.- Returns:
- True in case the matchee matches the matcher's criteria, else false.
-