public static enum Constants.NetworkType extends java.lang.Enum<Constants.NetworkType>
| Enum Constant and Description |
|---|
NETWORK_TYPE_DISCONNECTED
0: The SDK disconnects from the network.
|
NETWORK_TYPE_LAN
1: The network type is LAN.
|
NETWORK_TYPE_MOBILE_2G
3: The network type is mobile 2G.
|
NETWORK_TYPE_MOBILE_3G
4: The network type is mobile 3G.
|
NETWORK_TYPE_MOBILE_4G
5: The network type is mobile 4G.
|
NETWORK_TYPE_MOBILE_5G
6: The network type is mobile 5G.
|
NETWORK_TYPE_UNKNOWN
-1: The network type is unknown.
|
NETWORK_TYPE_WIFI
2: The network type is Wi-Fi (including hotspots).
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.NetworkType |
fromInt(int value)
Converts an integer value to its corresponding NetworkType enum constant.
|
int |
getValue()
Gets the integer value of the network type.
|
static Constants.NetworkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.NetworkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.NetworkType NETWORK_TYPE_UNKNOWN
public static final Constants.NetworkType NETWORK_TYPE_DISCONNECTED
public static final Constants.NetworkType NETWORK_TYPE_LAN
public static final Constants.NetworkType NETWORK_TYPE_WIFI
public static final Constants.NetworkType NETWORK_TYPE_MOBILE_2G
public static final Constants.NetworkType NETWORK_TYPE_MOBILE_3G
public static final Constants.NetworkType NETWORK_TYPE_MOBILE_4G
public static final Constants.NetworkType NETWORK_TYPE_MOBILE_5G
public static Constants.NetworkType[] values()
for (Constants.NetworkType c : Constants.NetworkType.values()) System.out.println(c);
public static Constants.NetworkType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static Constants.NetworkType fromInt(int value)
value - The integer value.