Package io.getstream.chat.android.models
Enum MessageSyncType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum MessageSyncType extends Enum<MessageSyncType>
A type of message sync description.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classMessageSyncType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description NONEWhen no additional description is required to SyncStatus.
IN_PROGRESS_AWAIT_ATTACHMENTSWhen sync is in progress due to awaiting attachments.
FAILED_MODERATIONFailed due to moderation violation.
-
Method Summary
Modifier and Type Method Description final MessageSyncTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<MessageSyncType>values()Returns an array containing the constants of this enum type, in the order they're declared. final StringgetAlias()final IntegergetType()final EnumEntries<MessageSyncType>getEntries()A type of message sync description. -
-
Method Detail
-
valueOf
final MessageSyncType 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- An string representation of the MessageSyncType.
-
values
final Array<MessageSyncType> 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<MessageSyncType> getEntries()
A type of message sync description.
-
-
-
-