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

import androidx.annotation.NonNull;

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