Package zendesk.android.events
Enum ConnectionStatus
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum ConnectionStatus extends Enum<ConnectionStatus>
A representation of the current connection status of the SDK.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
name
private final Integer
ordinal
private final EnumEntries<ConnectionStatus>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description DISCONNECTED
The SDK instance has no internet connection.
CONNECTED
The SDK instance is connected to the internet.
CONNECTING_REALTIME
The SDK instance is establishing the realtime connection with the server.
CONNECTED_REALTIME
The SDK instance is connected to the internet and has a connection established with the server.
-
Method Summary
Modifier and Type Method Description final ConnectionStatus
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<ConnectionStatus>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ConnectionStatus>
getEntries()
A representation of the current connection status of the SDK. -
-
Method Detail
-
valueOf
final ConnectionStatus valueOf(String value)
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.)
-
values
final Array<ConnectionStatus> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ConnectionStatus> getEntries()
A representation of the current connection status of the SDK.
-
-
-
-