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

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

The newest version!
package org.openxma.hbmfilemerge;

/**
 *
 * describes various xpath expressions for hbm xml nodes
 */
enum XPathToHbmNode {
    HIBERNATE_MAPPING("/hibernate-mapping"), CLASS("/hibernate-mapping/class");

    private final String xpath;

    private XPathToHbmNode(String xpath) {
        this.xpath = xpath;
    }

    @Override
    public String toString() {
        return xpath;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy