-
- All Known Implementing Classes:
FilterSelector
public interface Selectee<T>Represents an operation that is used exclusively as a helper to someSelector'sSelector.mapSelected(swim.structure.Interpreter, swim.structure.Selectee<swim.structure.Item>)orSelector.forSelected(swim.structure.Interpreter, swim.structure.Selectee<T>)methods.
-
-
Method Summary
Modifier and Type Method Description Tselected(Interpreter interpreter)Performs this operation againstinterpreter.
-
-
-
Method Detail
-
selected
T selected(Interpreter interpreter)
Performs this operation againstinterpreter. By convention, a null return value indicates to "collection-oriented" callingSelectors(e.g.ChildrenSelector,KeysSelector) thatforSelectedshould continue to be invoked, if possible. A non-null value indicates to suchSelectorsthatforSelectedshould return immediately.
-
-