Package ai.nexconn.chat.channel.model
Enum GroupApplicationStatus
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum GroupApplicationStatus extends Enum<GroupApplicationStatus>
Group application status.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classGroupApplicationStatus.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description MANAGER_UNHANDLEDPending administrator approval.
MANAGER_REFUSEDRejected by administrator.
INVITEE_UNHANDLEDPending invitee acceptance.
INVITEE_REFUSEDRejected by invitee.
JOINEDAlready joined the group.
EXPIREDApplication has expired.
-
Method Summary
Modifier and Type Method Description final GroupApplicationStatusvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<GroupApplicationStatus>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()-
-
Method Detail
-
valueOf
final GroupApplicationStatus 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.)
- Parameters:
value- Status value.
-
values
final Array<GroupApplicationStatus> 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.
-
getValue
final Integer getValue()
-
-
-
-