android.net
Enum NetworkConnectivityListener.State
java.lang.Object
java.lang.Enum<NetworkConnectivityListener.State>
android.net.NetworkConnectivityListener.State
- All Implemented Interfaces:
- Serializable, Comparable<NetworkConnectivityListener.State>
- Enclosing class:
- NetworkConnectivityListener
public static enum NetworkConnectivityListener.State
- extends Enum<NetworkConnectivityListener.State>
|
Enum Constant Summary |
CONNECTED
This state is returned if there is connectivity to any network |
NOT_CONNECTED
This state is returned if there is no connectivity to any network. |
UNKNOWN
|
UNKNOWN
public static final NetworkConnectivityListener.State UNKNOWN
CONNECTED
public static final NetworkConnectivityListener.State CONNECTED
- This state is returned if there is connectivity to any network
NOT_CONNECTED
public static final NetworkConnectivityListener.State NOT_CONNECTED
- This state is returned if there is no connectivity to any network. This is set
to true under two circumstances:
- When connectivity is lost to one network, and there is no other available
network to attempt to switch to.
- When connectivity is lost to one network, and the attempt to switch to
another network fails.
values
public static NetworkConnectivityListener.State[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (NetworkConnectivityListener.State c : NetworkConnectivityListener.State.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static NetworkConnectivityListener.State valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Please submit a feedback, bug or feature