package org.jooq.meta.jaxb;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


Java class for GeneratedSerialVersionUID.

The following schema fragment specifies the expected content contained within this class.

<simpleType name="GeneratedSerialVersionUID">
  <restriction base="{http://www.w3.org/2001/XMLSchema}string">
    <enumeration value="HASH"/>
    <enumeration value="CONSTANT"/>
    <enumeration value="OFF"/>
  </restriction>
</simpleType>
/** * <p>Java class for GeneratedSerialVersionUID. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="GeneratedSerialVersionUID"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; * &lt;enumeration value="HASH"/&gt; * &lt;enumeration value="CONSTANT"/&gt; * &lt;enumeration value="OFF"/&gt; * &lt;/restriction&gt; * &lt;/simpleType&gt; * </pre> * */
@XmlType(name = "GeneratedSerialVersionUID") @XmlEnum public enum GeneratedSerialVersionUID { HASH, CONSTANT, OFF; public String value() { return name(); } public static GeneratedSerialVersionUID fromValue(String v) { return valueOf(v); } }