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

Constants.java « gallery « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f2d34dd9a78fdfdbaab3808ebad47c0db0cc882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.mapswithme.maps.gallery;

import androidx.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

public class Constants
{
  public static final int TYPE_PRODUCT = 0;
  public static final int TYPE_MORE = 1;
  @Retention(RetentionPolicy.SOURCE)
  @IntDef({ TYPE_PRODUCT, TYPE_MORE })
  @interface ViewType{}
}