package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for fkIntegrityCheckResult. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="fkIntegrityCheckResult"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="FORBIDDEN"/> * <enumeration value="FORBIDDEN_OVERRIDE_ALLOWED"/> * <enumeration value="ALLOWED"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "fkIntegrityCheckResult") @XmlEnum public enum FkIntegrityCheckResult { FORBIDDEN, FORBIDDEN_OVERRIDE_ALLOWED, ALLOWED; public String value() { return name(); } public static FkIntegrityCheckResult fromValue(String v) { return valueOf(v); } }