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

Popularity.java « search « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 467dbe08ce332a875c15b9a4243370c96698a4c3 (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
76
package com.mapswithme.maps.search;

import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.NonNull;

public class Popularity implements Parcelable
{
  @NonNull
  private final Type mType;

  public Popularity(int popularity)
  {
    mType = Type.makeInstance(popularity);
  }

  @NonNull
  public Type getType()
  {
    return mType;
  }

  @NonNull
  public static Popularity defaultInstance()
  {
    return new Popularity(Type.NOT_POPULAR.ordinal());
  }

  @Override
  public int describeContents()
  {
    return 0;
  }

  @Override
  public void writeToParcel(Parcel dest, int flags)
  {
    dest.writeInt(this.mType.ordinal());
  }

  protected Popularity(Parcel in)
  {
    int tmpMPopularity = in.readInt();
    this.mType = Type.values()[tmpMPopularity];
  }

  public static final Creator<Popularity> CREATOR = new Creator<Popularity>()
  {
    @Override
    public Popularity createFromParcel(Parcel source)
    {
      return new Popularity(source);
    }

    @Override
    public Popularity[] newArray(int size)
    {
      return new Popularity[size];
    }
  };

  public enum Type
  {
    NOT_POPULAR,
    POPULAR;

    @NonNull
    public static Type makeInstance(int index)
    {
      if (index < 0)
        throw new AssertionError("Incorrect negative index = " + index);

      return index > 0 ? POPULAR : NOT_POPULAR;
    }
  }
}