BlockingOption.Builder


public static final class BlockingOption.Builder
extends Object

java.lang.Object
   ↳ android.net.wifi.BlockingOption.Builder


Builder used to create BlockingOption objects.

Summary

Public constructors

Builder(int blockingTimeSec)

Create a Builder with blocking time for the network

Public methods

BlockingOption build()

Create a BlockingOption object for use in WifiManager.disallowCurrentSuggestedNetwork(BlockingOption).

BlockingOption.Builder setBlockingBssidOnly(boolean bssidOnly)

Set to configure blocking the whole network or a single BSSID.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

Builder

public Builder (int blockingTimeSec)

Create a Builder with blocking time for the network

Parameters
blockingTimeSec int: Time period to block the network in seconds Value is between 1 and 86400 inclusive

Throws
IllegalArgumentException if input is invalid.

Public methods

build

public BlockingOption build ()

Create a BlockingOption object for use in WifiManager.disallowCurrentSuggestedNetwork(BlockingOption).

Returns
BlockingOption This value cannot be null.

setBlockingBssidOnly

public BlockingOption.Builder setBlockingBssidOnly (boolean bssidOnly)

Set to configure blocking the whole network or a single BSSID. By default, the whole network will be blocked.

Parameters
bssidOnly boolean: True for a single BSSID, otherwise the whole network will be blocked

Returns
BlockingOption.Builder Instance of Builder to enable chaining of the builder method. This value cannot be null.