faa.tg.util.adapter
Interface Adapter<F,T>
- All Known Implementing Classes:
- Adapters.ArrayAdapter, Adapters.DequeReverserAdapter, Adapters.IdentityAdapter, Adapters.MapBackedAdapter, Adapters.MergedAdapter, AircraftTypeProfileMgr.TypeAdapter, CommandFeedbackAggregator.MessageConverter, DisplayContext, Manager.NamedAdapter, Position4DReport.ReportMaker, Position4Ds.DateAdapter, Position4Ds.EntryToElement, StringAdapter
public interface Adapter<F,T>
Interface for functors to convert F(rom) into T(o). It is recommended, but not
required that the T returned be non-null and obey the equals contract.
A private Adapter does not necessarily have to concern itself with all possible
F. In general, an unsupported value should result in a null return value.
See the source: Adapter.java
- Version:
- $Id: Adapter.java,v 1.2 2008/11/06 21:37:17 lykensj Exp $
- Author:
- lykensj, Engility Oct 28, 2008 2:12:04 PM
convert
T convert(F f)