Class IsAssignableFromMatcher<M>

java.lang.Object
org.refcodes.matcher.AbstractMatcher<M>
org.refcodes.matcher.IsAssignableFromMatcher<M>
Type Parameters:
M - The matchee type
All Implemented Interfaces:
Matchable<M>, Matcher<M>, org.refcodes.mixin.AliasAccessor, org.refcodes.mixin.Schemable

public class IsAssignableFromMatcher<M> extends AbstractMatcher<M>
A IS ASSIGNABLE FROM implementation of a Matcher by type.
  • 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
    Modifier and Type
    Field
    Description
    static final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    IsAssignableFromMatcher(Class<?> aMatcheeType)
    Constructs a IS ASSIGNABLE FROM Matcher using the type of the matchees being the criteria to determine a match.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    isMatching(M aMatchee)
    Tests whether the given event is matching the mathcer's criteria.

    Methods inherited from class org.refcodes.matcher.AbstractMatcher

    getAlias

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • IsAssignableFromMatcher

      public IsAssignableFromMatcher(Class<?> aMatcheeType)
      Constructs a IS ASSIGNABLE FROM Matcher using the type of the matchees being the criteria to determine a match.
      Parameters:
      aMatcheeType - The type of the matchee to match.
  • Method Details

    • isMatching

      public boolean isMatching(M aMatchee)
      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.
    • toSchema

      public MatcherSchema toSchema()
      Specified by:
      toSchema in interface Matcher<M>
      Specified by:
      toSchema in interface org.refcodes.mixin.Schemable
      Overrides:
      toSchema in class AbstractMatcher<M>