All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xmlparser.annotations.XmlMapTagIsKey Maven / Gradle / Ivy

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
 * 
 *     value
 *     value2
 * 
 * }
 * 
* * 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