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

org.jboss.shrinkwrap.descriptor.api.validationConfiguration11.ExecutableType Maven / Gradle / Ivy

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

/**
 * This class implements the  executable-type  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public enum ExecutableType
{
   _NONE("NONE"),
   _CONSTRUCTORS("CONSTRUCTORS"),
   _NON_GETTER_METHODS("NON_GETTER_METHODS"),
   _GETTER_METHODS("GETTER_METHODS"),
   _ALL("ALL");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy