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

org.jboss.shrinkwrap.descriptor.api.orm21.ConstraintMode Maven / Gradle / Ivy

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

/**
 * This class implements the  constraint-mode  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public enum ConstraintMode
{
   _CONSTRAINT("CONSTRAINT"),
   _NO_CONSTRAINT("NO_CONSTRAINT"),
   _PROVIDER_DEFAULT("PROVIDER_DEFAULT");

   private String value;

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

   public String toString() {return value;}

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy