Home | History | Annotate | Download | only in net

Lines Matching refs:WifiKey

33 public class WifiKey implements Parcelable {
56 * Construct a new {@link WifiKey} for the given Wi-Fi SSID/BSSID pair.
66 public WifiKey(String ssid, String bssid) {
77 private WifiKey(Parcel in) {
98 WifiKey wifiKey = (WifiKey) o;
100 return Objects.equals(ssid, wifiKey.ssid) && Objects.equals(bssid, wifiKey.bssid);
110 return "WifiKey[SSID=" + ssid + ",BSSID=" + bssid + "]";
113 public static final Creator<WifiKey> CREATOR =
114 new Creator<WifiKey>() {
116 public WifiKey createFromParcel(Parcel in) {
117 return new WifiKey(in);
121 public WifiKey[] newArray(int size) {
122 return new WifiKey[size];