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

LocalAdInfo.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc81dc9baa5cbb3a35ee1488050db62e446e0d8e (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
77
78
79
80
81
82
package com.mapswithme.maps.ads;

import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.IntDef;
import android.support.annotation.Nullable;

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

public class LocalAdInfo implements Parcelable
{
  @Retention(RetentionPolicy.SOURCE)
  @IntDef({ STATUS_NOT_AVAILABLE, STATUS_CANDIDATE, STATUS_CUSTOMER})

  public @interface Status {}

  private static final int STATUS_NOT_AVAILABLE = 0;
  private static final int STATUS_CANDIDATE = 1;
  private static final int STATUS_CUSTOMER = 2;

  @Status
  private final int mStatus;
  @Nullable
  private final String mUrl;

  private LocalAdInfo(@Status int status, @Nullable String url)
  {
    mUrl = url;
    mStatus = status;
  }

  public boolean isAvailable()
  {
    return mStatus != STATUS_NOT_AVAILABLE;
  }

  public boolean isCustomer()
  {
    return mStatus == STATUS_CUSTOMER;
  }

  @Nullable
  public String getUrl()
  {
    return mUrl;
  }

  private LocalAdInfo(Parcel in)
  {
    //noinspection WrongConstant
    this(in.readInt() /* mStatus */, in.readString() /* mUrl */);
  }

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

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

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

  @Override
  public void writeToParcel(Parcel dest, int flags)
  {
    dest.writeInt(mStatus);
    dest.writeString(mUrl);
  }
}