- java.lang.Object
-
- org.jooq.meta.jaxb.MatcherRule
-
- All Implemented Interfaces:
Serializable,XMLAppendable
public class MatcherRule extends Object implements Serializable, XMLAppendable
Java class for MatcherRule complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MatcherRule"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="transform" type="{http://www.jooq.org/xsd/jooq-codegen-3.15.0.xsd}MatcherTransformType" minOccurs="0"/> <element name="expression" type="{http://www.w3.org/2001/XMLSchema}string"/> </all> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringexpressionprotected MatcherTransformTypetransform
-
Constructor Summary
Constructors Constructor Description MatcherRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)booleanequals(Object that)StringgetExpression()A replacement expression that transforms the matched expression in a new value.MatcherTransformTypegetTransform()A pre-defined transformation type that transforms this rule's output into a specific format.inthashCode()voidsetExpression(String value)A replacement expression that transforms the matched expression in a new value.voidsetTransform(MatcherTransformType value)A pre-defined transformation type that transforms this rule's output into a specific format.StringtoString()MatcherRulewithExpression(String value)A replacement expression that transforms the matched expression in a new value.MatcherRulewithTransform(MatcherTransformType value)A pre-defined transformation type that transforms this rule's output into a specific format.
-
-
-
Field Detail
-
transform
protected MatcherTransformType transform
-
expression
protected String expression
-
-
Method Detail
-
getTransform
public MatcherTransformType getTransform()
A pre-defined transformation type that transforms this rule's output into a specific format.
-
setTransform
public void setTransform(MatcherTransformType value)
A pre-defined transformation type that transforms this rule's output into a specific format.
-
getExpression
public String getExpression()
A replacement expression that transforms the matched expression in a new value.
-
setExpression
public void setExpression(String value)
A replacement expression that transforms the matched expression in a new value.
-
withTransform
public MatcherRule withTransform(MatcherTransformType value)
A pre-defined transformation type that transforms this rule's output into a specific format.
-
withExpression
public MatcherRule withExpression(String value)
A replacement expression that transforms the matched expression in a new value.
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
-