// // Copyright (c) 2014 VK.com // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in // the Software without restriction, including without limitation the rights to // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of // the Software, and to permit persons to whom the Software is furnished to do so, // subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // package com.vk.sdk.api.model; import android.os.Parcel; import android.os.Parcelable; import org.json.JSONException; import org.json.JSONObject; /** * A place object describes a location. */ @SuppressWarnings("unused") public class VKApiPlace extends VKApiModel implements Parcelable, Identifiable { /** * Location ID. */ public int id; /** * Location title. */ public String title; /** * Geographical latitude, in degrees (from -90 to 90). */ public double latitude; /** * Geographical longitude, in degrees (from -180 to 180) */ public double longitude; /** * Date (in Unix time) when the location was added */ public long created; /** * Numbers of checkins in this place */ public int checkins; /** * Date (in Unix time) when the location was last time updated */ public long updated; /** * ID of the country the place is located in, positive number */ public int country_id; /** * ID of the city the place is located in, positive number */ public int city_id; public String coordinates; /** * Location address. */ public String address; public VKApiPlace(JSONObject from) throws JSONException { parse(from); } /** * Fills a Place instance from JSONObject. */ public VKApiPlace parse(JSONObject from) { id = from.optInt("id"); title = from.optJSONObject("place").optString("title"); latitude = from.optDouble("latitude"); longitude = from.optDouble("longitude"); created = from.optLong("created"); checkins = from.optInt("checkins"); coordinates = from.optString("coordinates"); updated = from.optLong("updated"); country_id = from.optInt("country"); city_id = from.optInt("city"); address = from.optString("address"); return this; } /** * Creates a Place instance from Parcel. */ public VKApiPlace(Parcel in) { this.id = in.readInt(); this.title = in.readString(); this.latitude = in.readDouble(); this.longitude = in.readDouble(); this.created = in.readLong(); this.checkins = in.readInt(); this.updated = in.readLong(); this.country_id = in.readInt(); this.city_id = in.readInt(); this.address = in.readString(); } /** * Creates empty Place instance. */ public VKApiPlace() { } @Override public int getId() { return id; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(this.id); dest.writeString(this.title); dest.writeDouble(this.latitude); dest.writeDouble(this.longitude); dest.writeLong(this.created); dest.writeInt(this.checkins); dest.writeLong(this.updated); dest.writeInt(this.country_id); dest.writeInt(this.city_id); dest.writeString(address); } @Override public String toString() { return address; } public static Creator<VKApiPlace> CREATOR = new Creator<VKApiPlace>() { public VKApiPlace createFromParcel(Parcel source) { return new VKApiPlace(source); } public VKApiPlace[] newArray(int size) { return new VKApiPlace[size]; } }; }