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 MatchersSequenceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="MatchersSequenceType"> * <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="sequenceIdentifier" type="{http://www.jooq.org/xsd/jooq-codegen-3.10.0.xsd}MatcherRule" minOccurs="0"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MatchersSequenceType", propOrder = { }) @SuppressWarnings({ "all" }) public class MatchersSequenceType implements Serializable { private final static long serialVersionUID = 31000L; @XmlJavaTypeAdapter(StringAdapter.class) protected String expression; protected MatcherRule sequenceIdentifier; /** * 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 sequenceIdentifier-Eigenschaft ab. * * @return * possible object is * {@link MatcherRule } * */ public MatcherRule getSequenceIdentifier() { return sequenceIdentifier; } /** * Legt den Wert der sequenceIdentifier-Eigenschaft fest. * * @param value * allowed object is * {@link MatcherRule } * */ public void setSequenceIdentifier(MatcherRule value) { this.sequenceIdentifier = value; } public MatchersSequenceType withExpression(String value) { setExpression(value); return this; } public MatchersSequenceType withSequenceIdentifier(MatcherRule value) { setSequenceIdentifier(value); return this; } }