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

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

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

public class CatalogCustomPropertyOption implements Parcelable
{
  @NonNull
  private final String mValue;

  @NonNull
  private final String mLocalizedName;

  public CatalogCustomPropertyOption(@NonNull String value, @NonNull String localizedName)
  {
    mValue = value;
    mLocalizedName = localizedName;
  }

  protected CatalogCustomPropertyOption(Parcel in)
  {
    mValue = in.readString();
    mLocalizedName = in.readString();
  }

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

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

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

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

  @NonNull
  public String getValue() { return mValue; }

  @NonNull
  public String getLocalizedName() { return mLocalizedName; }
}