Enum Class Status
- All Implemented Interfaces:
Serializable
,Comparable<Status>
,Constable
The Status
enum represents the status of the current user.
For the status of a Contact
, see the ContactStatus
enum.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AVAILABLE
User is online and available to talk.
Messages are immediately delivered to the Zello SDK and play live. Delivered messages call the
onMessageStateChanged()
method on theEvents
interface.- See Also:
-
BUSY
User is online but currently busy.
Messages are not delivered to the Zello SDK and do not play live. However, they are delivered to the Zello Work app and save in history.
-
SOLO
User is online but only available to talk with the selected
Contact
.Messages from the selected
Contact
are immediately delivered to the Zello SDK and play live. Delivered messages call theonMessageStateChanged()
method on theEvents
interface.Messages from a non-selected
Contact
are not delivered to the Zello SDK and do not play live. However, they are delivered to the Zello Work app and save in history.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-