io.github.incplusplus.bigtoolbox.network.wlan.AvailableAccessPointPack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigtoolbox-network Show documentation
Show all versions of bigtoolbox-network Show documentation
The network module of bigtoolbox
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);
}
}