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

org.jboss.shrinkwrap.descriptor.api.javaee7.IsolationLevelType Maven / Gradle / Ivy

package org.jboss.shrinkwrap.descriptor.api.javaee7; 

/**
 * This class implements the  isolation-levelType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum IsolationLevelType
{
   _TRANSACTION_READ_UNCOMMITTED("TRANSACTION_READ_UNCOMMITTED"),
   _TRANSACTION_READ_COMMITTED("TRANSACTION_READ_COMMITTED"),
   _TRANSACTION_REPEATABLE_READ("TRANSACTION_REPEATABLE_READ"),
   _TRANSACTION_SERIALIZABLE("TRANSACTION_SERIALIZABLE");

   private String value;

   IsolationLevelType (String value) { this.value = value; }

   public String toString() {return value;}

   public static IsolationLevelType getFromStringValue(String value)
   {
      for(IsolationLevelType type: IsolationLevelType.values())
      {
         if(value != null && type.toString().equals(value))
        { return type;}
      }
      return null;
   }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy