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.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.jooq.util.jaxb.tools.StringAdapter; /** * <p>Java-Klasse für MatchersRoutineType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="MatchersRoutineType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="expression" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="routineClass" type="{http://www.jooq.org/xsd/jooq-codegen-3.10.0.xsd}MatcherRule" minOccurs="0"/> * <element name="routineMethod" type="{http://www.jooq.org/xsd/jooq-codegen-3.10.0.xsd}MatcherRule" minOccurs="0"/> * <element name="routineImplements" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MatchersRoutineType", propOrder = { }) @SuppressWarnings({ "all" }) public class MatchersRoutineType implements Serializable { private final static long serialVersionUID = 31000L; @XmlJavaTypeAdapter(StringAdapter.class) protected String expression; protected MatcherRule routineClass; protected MatcherRule routineMethod; @XmlJavaTypeAdapter(StringAdapter.class) protected String routineImplements; /** * Ruft den Wert der expression-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getExpression() { return expression; } /** * Legt den Wert der expression-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setExpression(String value) { this.expression = value; } /** * Ruft den Wert der routineClass-Eigenschaft ab. * * @return * possible object is * {@link MatcherRule } * */ public MatcherRule getRoutineClass() { return routineClass; } /** * Legt den Wert der routineClass-Eigenschaft fest. * * @param value * allowed object is * {@link MatcherRule } * */ public void setRoutineClass(MatcherRule value) { this.routineClass = value; } /** * Ruft den Wert der routineMethod-Eigenschaft ab. * * @return * possible object is * {@link MatcherRule } * */ public MatcherRule getRoutineMethod() { return routineMethod; } /** * Legt den Wert der routineMethod-Eigenschaft fest. * * @param value * allowed object is * {@link MatcherRule } * */ public void setRoutineMethod(MatcherRule value) { this.routineMethod = value; } /** * Ruft den Wert der routineImplements-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRoutineImplements() { return routineImplements; } /** * Legt den Wert der routineImplements-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRoutineImplements(String value) { this.routineImplements = value; } public MatchersRoutineType withExpression(String value) { setExpression(value); return this; } public MatchersRoutineType withRoutineClass(MatcherRule value) { setRoutineClass(value); return this; } public MatchersRoutineType withRoutineMethod(MatcherRule value) { setRoutineMethod(value); return this; } public MatchersRoutineType withRoutineImplements(String value) { setRoutineImplements(value); return this; } }