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

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

The newest version!
package org.jboss.shrinkwrap.descriptor.api.ejbjar32; 

/**
 * This class implements the  method-intfType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum MethodIntfType
{
   _HOME("Home"),
   _REMOTE("Remote"),
   _LOCALHOME("LocalHome"),
   _LOCAL("Local"),
   _SERVICEENDPOINT("ServiceEndpoint"),
   _TIMER("Timer"),
   _MESSAGEENDPOINT("MessageEndpoint"),
   _LIFECYCLECALLBACK("LifecycleCallback");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy