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

org.jboss.shrinkwrap.descriptor.api.beans11.BeanDiscoveryMode Maven / Gradle / Ivy

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

/**
 * This class implements the  bean-discovery-mode  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum BeanDiscoveryMode
{
   _ANNOTATED("annotated"),
   _ALL("all"),
   _NONE("none");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy