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

org.jooq.conf.MappedTable Maven / Gradle / Ivy

There is a newer version: 3.19.11
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.05.13 at 02:45:23 PM CEST 
//


package org.jooq.conf;

import java.io.Serializable;
import java.util.regex.Pattern;
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;


/**
 * 

Java class for MappedTable complex type. * *

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

 * <complexType name="MappedTable">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="input" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="inputExpression" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="output" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MappedTable", propOrder = { }) @SuppressWarnings({ "all" }) public class MappedTable extends SettingsBase implements Serializable, Cloneable { private final static long serialVersionUID = 380L; protected String input; @XmlElement(type = String.class) @XmlJavaTypeAdapter(RegexAdapter.class) protected Pattern inputExpression; @XmlElement(required = true) protected String output; /** * Gets the value of the input property. * * @return * possible object is * {@link String } * */ public String getInput() { return input; } /** * Sets the value of the input property. * * @param value * allowed object is * {@link String } * */ public void setInput(String value) { this.input = value; } /** * Gets the value of the inputExpression property. * * @return * possible object is * {@link String } * */ public Pattern getInputExpression() { return inputExpression; } /** * Sets the value of the inputExpression property. * * @param value * allowed object is * {@link String } * */ public void setInputExpression(Pattern value) { this.inputExpression = value; } /** * Gets the value of the output property. * * @return * possible object is * {@link String } * */ public String getOutput() { return output; } /** * Sets the value of the output property. * * @param value * allowed object is * {@link String } * */ public void setOutput(String value) { this.output = value; } public MappedTable withInput(String value) { setInput(value); return this; } public MappedTable withInputExpression(Pattern value) { setInputExpression(value); return this; } public MappedTable withOutput(String value) { setOutput(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy