Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TypeConverter.java « util « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9770a649739e4c2bb690ec39703dab1c639506d (plain)
1
2
3
4
5
6
7
8
package com.mapswithme.util;

import android.support.annotation.NonNull;

public interface TypeConverter<D, T>
{
  T convert(@NonNull D data);
}