org.hibernate.jpamodelgen.xml.jaxb.ConstraintMode Maven / Gradle / Ivy
package org.hibernate.jpamodelgen.xml.jaxb;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for constraint-mode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "constraint-mode", namespace = "https://jakarta.ee/xml/ns/persistence/orm")
@XmlEnum
public enum ConstraintMode {
CONSTRAINT,
NO_CONSTRAINT,
PROVIDER_DEFAULT;
public String value() {
return name();
}
public static ConstraintMode fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy