Class FilterFactories


  • @Factory
    public class FilterFactories
    extends java.lang.Object
    A Micronaut factory for producing Filter instances.
    Since:
    1.0
    Author:
    Jonathan Knight
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T> com.tangosol.util.Filter<T> resolve​(java.util.Set<java.lang.annotation.Annotation> annotations)
      Resolve a Filter implementation from the specified qualifiers.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • resolve

        public <T> com.tangosol.util.Filter<T> resolve​(java.util.Set<java.lang.annotation.Annotation> annotations)
        Resolve a Filter implementation from the specified qualifiers.
        Type Parameters:
        T - the type that the Filter can filter
        Parameters:
        annotations - the qualifiers to use to create the Filter
        Returns:
        a Filter implementation created from the specified qualifiers.