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: 5938d75fc66b2e35749daf169d002dfe4f59aba3 (plain)
1
2
3
4
5
6
7
8
package com.mapswithme.util;

import androidx.annotation.NonNull;

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