Interface Picker


public interface Picker
Pick an object

An interface analagous to java.util.Comparator that is used to determine whether an object matches a particualr criteria or not

Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Choose whether to accpet or reject a particular object.
  • Method Details

    • pick

      boolean pick(Object o)
      Choose whether to accpet or reject a particular object.
      Parameters:
      o - the object to examine.
      Returns:
      true if the object matches the criteria, false otherwise.