Class CommandNotificationMessage
- 
                    
                    - All Implemented Interfaces:
 
 public class CommandNotificationMessageCommand Reminder Message Class This is a command message class. Messages of this type are stored but do not count towards unread message numbers. The difference from CommandMessage is that this message is stored and displayed in the UI. 
- 
                
                    
                    - 
                                
                            
                                Constructor SummaryConstructors Constructor Description CommandNotificationMessage(Array<byte> data)CommandNotificationMessage(Parcel in)
 - 
                                
                            
                                Method SummaryModifier and Type Method Description StringgetName()Retrieves the command name. voidsetName(String name)Sets the command name. StringgetData()Retrieves command data, which can be in any format, such as JSON. voidsetData(String data)Sets the command data, which can be in any format, such as JSON. static CommandNotificationMessageobtain(String name, String data)Creates a message instance. Array<byte>encode()voidwriteToParcel(Parcel dest, int flags)Writes the class data into the provided Parcel. intdescribeContents()Describes the type of special objects included in the arrangement information of the Parcelable object. - 
                    
                    
                    - 
                                
                            
                                Constructor Detail- 
                                        CommandNotificationMessageCommandNotificationMessage(Array<byte> data) 
 - 
                                        CommandNotificationMessageCommandNotificationMessage(Parcel in) 
 
- 
                                        
 - 
                                
                            
                                Method Detail- 
                                        getNameString getName() Retrieves the command name. - Returns:
- The command name. 
 
 - 
                                        setNamevoid setName(String name) Sets the command name. - Parameters:
- name- The command name.
 
 - 
                                        getDataString getData() Retrieves command data, which can be in any format, such as JSON. - Returns:
- Command data, which can be in any format, such as JSON. 
 
 - 
                                        setDatavoid setData(String data) Sets the command data, which can be in any format, such as JSON. - Parameters:
- data- Command data, which can be in any format, such as JSON.
 
 - 
                                        obtainstatic CommandNotificationMessage obtain(String name, String data) Creates a message instance. - Parameters:
- name- The command name to be retrieved.
- data- The command data to be set, which can be in any format, such as JSON.
- Returns:
- The message instance. 
 
 - 
                                        writeToParcelvoid writeToParcel(Parcel dest, int flags) Writes the class data into the provided Parcel. - Parameters:
- dest- The Parcel into which the object is written.
- flags- Additional flags about how the object should be written, possibly 0 or PARCELABLE_WRITE_RETURN_VALUE.
 
 - 
                                        describeContentsint describeContents() Describes the type of special objects included in the arrangement information of the Parcelable object. - Returns:
- A flag indicating the arrangement of the special object type collection in the Parcelable object. 
 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-