ResAuthType.java

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

/**
 * This class implements the <code> res-authType </code> xsd type 
 */
public enum ResAuthType
{
   _APPLICATION("Application"),
   _CONTAINER("Container");

   private String value;

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

   public String toString() {return value;}

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

}