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

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

import android.support.annotation.IntDef;

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

final class BookingFilter
{
  // This list should correspond to the booking::filter::Type enum on c++ side.
  public static final int TYPE_DEALS = 0;
  public static final int TYPE_AVAILABILITY = 1;

  @Retention(RetentionPolicy.SOURCE)
  @IntDef({ TYPE_DEALS, TYPE_AVAILABILITY })
  public @interface Type {}
}