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

org.infinispan.persistence.jpa.configuration.Attribute Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.persistence.jpa.configuration;

import java.util.HashMap;
import java.util.Map;

/**
 * Enumerates the attributes used by the JPA cache stores configuration
 *
 * @author Ray Tsang
 */
public enum Attribute {
   // must be first
   UNKNOWN(null),

   PERSISTENCE_UNIT_NAME("persistence-unit"),
   ENTITY_CLASS_NAME("entity-class"),
   BATCH_SIZE("batch-size"),
   STORE_METADATA("store-metadata")
   ;

   private final String name;

   private Attribute(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 attributes;

   static {
      final Map map = new HashMap(64);
      for (Attribute attribute : values()) {
         final String name = attribute.getLocalName();
         if (name != null) {
            map.put(name, attribute);
         }
      }
      attributes = map;
   }

   public static Attribute forName(final String localName) {
      final Attribute attribute = attributes.get(localName);
      return attribute == null ? UNKNOWN : attribute;
   }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy