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 Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Get the object being used for comparisons and equals checks.
    boolean
    matches(T key)
    Deprecated.
    Indicates whether this Selector matches the key.
  • Method Details

    • getObject

      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.