AddonMeetingInfo.MeetingStatus

@PublicApi
enum AddonMeetingInfo.MeetingStatus


Describes the status of the user in Meet.

For example, whether they are currently participating in an ongoing meeting, and if so, whether that meeting also has an ongoing add-on session.

Note: this status is only relevant to the Meet app and meetings. It says nothing about whether the Meet Add-on's SDK is connected to the Meet app or is itself participating in any add-on session.

Summary

Enum Values

CONNECTED

User is in an ongoing meeting.

CONNECTED_WITH_ADDON_SESSION

User is in an ongoing meeting, which is currently hosting an add-on session.

NOT_CONNECTED

User is not currently in a meeting.

Public functions

java-static AddonMeetingInfo.MeetingStatus!
valueOf(name: String!)

Returns the enum constant of this type with the specified name.

java-static Array<AddonMeetingInfo.MeetingStatus!>!

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

CONNECTED_WITH_ADDON_SESSION

@PublicApi
val AddonMeetingInfo.MeetingStatus.CONNECTED_WITH_ADDON_SESSIONAddonMeetingInfo.MeetingStatus

User is in an ongoing meeting, which is currently hosting an add-on session.

NOT_CONNECTED

@PublicApi
val AddonMeetingInfo.MeetingStatus.NOT_CONNECTEDAddonMeetingInfo.MeetingStatus

User is not currently in a meeting.

Public functions

valueOf

java-static fun valueOf(name: String!): AddonMeetingInfo.MeetingStatus!

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.)

Returns
AddonMeetingInfo.MeetingStatus!

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

java-static fun values(): Array<AddonMeetingInfo.MeetingStatus!>!

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.

Returns
Array<AddonMeetingInfo.MeetingStatus!>!

an array containing the constants of this enum type, in the order they're declared