public interface ViewDataAdapter<VIEW extends android.view.View,DATA>
ViewDataAdapters are used to extract data from
Views. Saripaar provides a set of default adapters for stock Android
widgets. Developers can implement their own adapters for custom views or data types they are
interested in.DATA getData(VIEW view) throws ConversionException
View.view - The View from which contains the data that we are
interested in.ConversionException - If the adapter is unable to convert the data to the expected
data type.