package org.jooq.meta.jaxb;

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


Java class for MatcherTransformType.

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

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