org.infinispan.persistence.jpa.configuration.Element Maven / Gradle / Ivy
package org.infinispan.persistence.jpa.configuration;
import java.util.HashMap;
import java.util.Map;
/**
* An enumeration of all the recognized XML element local names for the JPA cache stores
*
* @author Ray Tsang
*/
public enum Element {
// must be first
UNKNOWN(null),
JPA_STORE("jpa-store")
;
private final String name;
Element(final String name) {
this.name = name;
}
/**
* Get the local name of this element.
*
* @return the local name
*/
public String getLocalName() {
return name;
}
private static final Map MAP;
static {
final Map map = new HashMap(8);
for (Element element : values()) {
final String name = element.getLocalName();
if (name != null) {
map.put(name, element);
}
}
MAP = map;
}
public static Element forName(final String localName) {
final Element element = MAP.get(localName);
return element == null ? UNKNOWN : element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy