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

org.jboss.shrinkwrap.descriptor.api.webcommon31.TransportGuaranteeType Maven / Gradle / Ivy

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

/**
 * This class implements the  transport-guaranteeType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum TransportGuaranteeType
{
   _NONE("NONE"),
   _INTEGRAL("INTEGRAL"),
   _CONFIDENTIAL("CONFIDENTIAL");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy