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

org.infinispan.persistence.rocksdb.configuration.Element Maven / Gradle / Ivy

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

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

/**
 * An enumeration of all the recognized XML element local names for the RocksDB cache store
 *
 * @author Ray Tsang
 */
public enum Element {
   // must be first
   UNKNOWN(null),

   COMPRESSION("compression"),
   EXPIRATION("expiration"),
   ROCKSDB_STORE("rocksdb-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<>(values().length);
      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;
   }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy