| java.lang.Object | ||
| ↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
| ↳ | com.gsma.services.rcs.RcsService.ReadStatus | |
Read status of the message
| Enum Values | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| RcsService.ReadStatus | READ | The message has been displayed in the UI. | |||||||||
| RcsService.ReadStatus | UNREAD | The message has not yet been displayed in the UI. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| final int |
toInt()
Gets integer value associated to ReadStatus instance
| ||||||||||
| static RcsService.ReadStatus | valueOf(String name) | ||||||||||
| static RcsService.ReadStatus |
valueOf(int value)
Returns a ReadStatus instance for the specified integer value.
| ||||||||||
| final static ReadStatus[] | values() | ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
| |||||||||||
The message has been displayed in the UI.
The message has not yet been displayed in the UI.
Gets integer value associated to ReadStatus instance
Returns a ReadStatus instance for the specified integer value.
| value | the value associated to the ReadStatus |
|---|