Interface Selector<T>


  • @Deprecated
    public interface Selector<T>
    Deprecated.
    Here for compatibility only. Do not use directly
    A Selector is a wrapper around an arbitrary object.
    • Method Detail

      • getObject

        java.lang.Object getObject()
        Deprecated.
        Get the object being used for comparisons and equals checks.
        Returns:
        The internal object.
      • matches

        boolean matches​(T key)
        Deprecated.
        Indicates whether this Selector matches the key.
        Parameters:
        key - The key to match
        Returns:
        true if there's a match, otherwise false.