java.lang.Cloneable
public interface Selector<T> implements Cloneable
Interface a selector from a store should conform to.
abstract boolean
match(T obj)
abstract Object
clone()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract boolean match(T obj)
Match the passed in object, returning true if it would be selected by this selector, false otherwise.
obj
true if the object is a match for this selector, false otherwise.
abstract Object clone()