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

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

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

public class FeatureCategory implements Parcelable
{
  @NonNull
  private final String mType;

  @NonNull
  private final String mLocalizedTypeName;

  public FeatureCategory(@NonNull String type, @NonNull String localizedTypeName)
  {
    mType = type;
    mLocalizedTypeName = localizedTypeName;
  }

  private FeatureCategory(Parcel source)
  {
    mType = source.readString();
    mLocalizedTypeName = source.readString();
  }

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

  @NonNull
  public String getLocalizedTypeName()
  {
    return mLocalizedTypeName;
  }

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

  @Override
  public void writeToParcel(Parcel dest, int flags)
  {
    dest.writeString(mType);
    dest.writeString(mLocalizedTypeName);
  }

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

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