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

org.openxma.hbmfilemerge.XmlElementAttribute Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.openxma.hbmfilemerge;

/**
 * Describes the name of the attribute of an hibernate mapping xml element
 */
enum XmlElementAttribute {

    NAME("name"), ENTITY_NAME("entity-name"), CLASS("class");

    /**
     * the name of the xml attribute
     */
    private String name;

    private XmlElementAttribute(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy