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

DownloaderPromoBannerStats.java « downloader « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef6deae5fd42586c338fa53b1554b241da84cb1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.mapswithme.maps.downloader;

import androidx.annotation.NonNull;

import com.mapswithme.util.statistics.Statistics;

public enum DownloaderPromoBannerStats
{
  NO_PROMO
      {
        @NonNull
        @Override
        public String getValue()
        {
          throw new UnsupportedOperationException("Unsupported here");
        }
      },
  CATALOG
      {
        @NonNull
        @Override
        public String getValue()
        {
          return Statistics.ParamValue.MAPSME_GUIDES;
        }
      },
  MEGAFON
      {
        @NonNull
        @Override
        public String getValue()
        {
          return Statistics.ParamValue.MEGAFON;
        }
      };

  @NonNull
  public abstract String getValue();
}