package de.thedevstack.conversationsplus.enums; /** * This enum represents the different combinations * of confirmations which need to be requested, processed * or sent. */ public enum MessageConfirmation { NONE, /** * Message Delivery Receipts (XEP-0184) */ DELIVERY_RECEIPT, /** * Chat Markers (XEP-0333) */ CHAT_MARKERS, /** * Message Delivery Receipts (XEP-0184) and * Chat Markers (XEP-0333) */ DELIVERY_RECEIPT_CHAT_MARKERS; }