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

org.jooq.util.jaxb.Strategy Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.10.21 at 03:30:25 PM CEST 
//


package org.jooq.util.jaxb;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jooq.util.jaxb.tools.StringAdapter;


/**
 * 

Java class for Strategy complex type. * *

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

 * <complexType name="Strategy">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="matchers" type="{http://www.jooq.org/xsd/jooq-codegen-3.8.0.xsd}Matchers" minOccurs="0"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Strategy", propOrder = { "name", "matchers" }) @SuppressWarnings({ "all" }) public class Strategy implements Serializable { private final static long serialVersionUID = 380L; @XmlElement(defaultValue = "org.jooq.util.DefaultGeneratorStrategy") @XmlJavaTypeAdapter(StringAdapter.class) protected String name = "org.jooq.util.DefaultGeneratorStrategy"; protected Matchers matchers; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the matchers property. * * @return * possible object is * {@link Matchers } * */ public Matchers getMatchers() { return matchers; } /** * Sets the value of the matchers property. * * @param value * allowed object is * {@link Matchers } * */ public void setMatchers(Matchers value) { this.matchers = value; } public Strategy withName(String value) { setName(value); return this; } public Strategy withMatchers(Matchers value) { setMatchers(value); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy