
xmlparser.annotations.XmlMapTagIsKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
The newest version!
package xmlparser.annotations;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Used for serializing and deserializing maps of this form:
*
* {@code
*
* }
*
*
* Be aware that xml tag names cannot be encoded and have strict rules about
* acceptable naming. If your map contains keys that are not valid XML tag
* names you will generate invalid XML.
*/
@Retention(RUNTIME)
public @interface XmlMapTagIsKey {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy