All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.incplusplus.bigtoolbox.network.wlan.AvailableAccessPointPack Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.github.incplusplus.bigtoolbox.network.wlan;

import java.util.Arrays;

public class AvailableAccessPointPack
{
	public final AccessPoint[] accessPoints;

	AvailableAccessPointPack(AccessPoint[] accessPoints)
	{
		this.accessPoints = accessPoints;
	}

	public String toString()
	{
		return Arrays.toString(accessPoints);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy