/** * Radius Networks, Inc. * http://www.radiusnetworks.com * * @author David G. Young * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package com.radiusnetworks.ibeacon.service; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import com.radiusnetworks.ibeacon.IBeacon; import android.os.Parcel; import android.os.Parcelable; public class IBeaconData extends IBeacon implements Parcelable { public IBeaconData(IBeacon iBeacon) { super(iBeacon); } public static Collection<IBeaconData> fromIBeacons(Collection<IBeacon> iBeacons) { ArrayList<IBeaconData> iBeaconDatas = new ArrayList<IBeaconData>(); Iterator<IBeacon> iBeaconIterator = iBeacons.iterator(); while (iBeaconIterator.hasNext()) { iBeaconDatas.add(new IBeaconData(iBeaconIterator.next())); } return iBeaconDatas; } public static Collection<IBeacon> fromIBeaconDatas(Collection<IBeaconData> iBeaconDatas) { ArrayList<IBeacon> iBeacons = new ArrayList<IBeacon>(); if (iBeaconDatas != null) { Iterator<IBeaconData> iBeaconIterator = iBeaconDatas.iterator(); while (iBeaconIterator.hasNext()) { iBeacons.add(iBeaconIterator.next()); } } return iBeacons; } public int describeContents() { return 0; } public void writeToParcel(Parcel out, int flags) { out.writeInt(major); out.writeInt(minor); out.writeString(proximityUuid); out.writeInt(getProximity()); out.writeDouble(getAccuracy()); out.writeInt(rssi); out.writeInt(txPower); out.writeString(bluetoothAddress); } public static final Parcelable.Creator<IBeaconData> CREATOR = new Parcelable.Creator<IBeaconData>() { public IBeaconData createFromParcel(Parcel in) { return new IBeaconData(in); } public IBeaconData[] newArray(int size) { return new IBeaconData[size]; } }; private IBeaconData(Parcel in) { major = in.readInt(); minor = in.readInt(); proximityUuid = in.readString(); proximity = in.readInt(); accuracy = in.readDouble(); rssi = in.readInt(); txPower = in.readInt(); bluetoothAddress = in.readString(); } }