package de.thedevstack.conversationsplus.xmpp.chatmarkers; import de.thedevstack.conversationsplus.xml.Element; import de.thedevstack.conversationsplus.xml.XmlElementContainer; /** * Representation of the ChatMarkers hint. *
 *  
 * 
*/ public enum ChatMarkers implements XmlElementContainer { MARKABLE("markable"), RECEIVED("received"), DISPLAYED("displayed"), ACKNOWLEDGED("acknowledged"); private final Element xmlElement; ChatMarkers(String elementName) { this.xmlElement = new Element(elementName, ChatMarkersXep.NAMESPACE); } @Override public Element getXmlElement() { return xmlElement; } }