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

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

import android.support.annotation.NonNull;

public interface StatisticValueConverter<T>
{
  @NonNull
  T toStatisticValue();
}