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

org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13.AddressingResponsesType Maven / Gradle / Ivy

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

/**
 * This class implements the  addressing-responsesType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public enum AddressingResponsesType
{
   _ANONYMOUS("ANONYMOUS"),
   _NON_ANONYMOUS("NON_ANONYMOUS"),
   _ALL("ALL");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy