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

org.jboss.shrinkwrap.descriptor.api.ejbjar32.TransactionTypeType Maven / Gradle / Ivy

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

/**
 * This class implements the  transaction-typeType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum TransactionTypeType
{
   _BEAN("Bean"),
   _CONTAINER("Container");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy