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

SearchResult.java « search « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82e0ed3d10bf65500867920f69f7efa1144ac094 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.mapswithme.maps.search;

/**
 * Class instances are created from native code.
 */
@SuppressWarnings("unused")
public class SearchResult
{
  public static final int TYPE_SUGGEST = 0;
  public static final int TYPE_RESULT = 1;

  // Values should match osm::YesNoUnknown enum.
  public static final int OPEN_NOW_UNKNOWN = 0;
  public static final int OPEN_NOW_YES = 1;
  public static final int OPEN_NOW_NO = 2;

  public static class Description
  {
    public final String featureType;
    public final String region;
    public final String distance;
    public final String cuisine;
    public final String rating;
    public final String pricing;
    public final int stars;
    public final int openNow;

    public Description(String featureType, String region, String distance,
                       String cuisine, String rating, String pricing, int stars, int openNow)
    {
      this.featureType = featureType;
      this.region = region;
      this.distance = distance;
      this.cuisine = cuisine;
      this.rating = rating;
      this.pricing = pricing;
      this.stars = stars;
      this.openNow = openNow;
    }
  }

  public final String name;
  public final String suggestion;
  public final double lat;
  public final double lon;

  public final int type;
  public final Description description;

  // Consecutive pairs of indexes (each pair contains : start index, length), specifying highlighted matches of original query in result
  public final int[] highlightRanges;

  public SearchResult(String name, String suggestion, double lat, double lon, int[] highlightRanges)
  {
    this.name = name;
    this.suggestion = suggestion;
    this.lat = lat;
    this.lon = lon;
    description = null;
    type = TYPE_SUGGEST;

    this.highlightRanges = highlightRanges;
  }

  public SearchResult(String name, Description description, double lat, double lon, int[] highlightRanges)
  {
    this.name = name;
    suggestion = null;
    this.lat = lat;
    this.lon = lon;
    type = TYPE_RESULT;
    this.description = description;
    this.highlightRanges = highlightRanges;
  }
}