
org.xmlet.regexapi.NonCapturingGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of regexApi Show documentation
Show all versions of regexApi Show documentation
Uses XsdAsmFaster to generate a fluent API that allows the manipulation of the regex language.
The newest version!
package org.xmlet.regexapi;
import java.util.function.Consumer;
public final class NonCapturingGroup implements CustomAttributeGroup, Z>, MatchingOperationsAll1, Z> {
protected final Z parent;
protected final ElementVisitor visitor;
public NonCapturingGroup(ElementVisitor visitor) {
this.visitor = visitor;
this.parent = null;
visitor.visitElementNonCapturingGroup(this);
}
public NonCapturingGroup(Z parent) {
this.parent = parent;
this.visitor = parent.getVisitor();
this.visitor.visitElementNonCapturingGroup(this);
}
protected NonCapturingGroup(Z parent, ElementVisitor visitor, boolean shouldVisit) {
this.parent = parent;
this.visitor = visitor;
if (shouldVisit) {
visitor.visitElementNonCapturingGroup(this);
}
}
public Z __() {
this.visitor.visitParentNonCapturingGroup(this);
return this.parent;
}
public final NonCapturingGroup dynamic(Consumer> consumer) {
this.visitor.visitOpenDynamic();
consumer.accept(this);
this.visitor.visitCloseDynamic();
return this;
}
public final NonCapturingGroup of(Consumer> consumer) {
consumer.accept(this);
return this;
}
public Z getParent() {
return this.parent;
}
public final ElementVisitor getVisitor() {
return this.visitor;
}
public String getName() {
return "nonCapturingGroup";
}
public final NonCapturingGroup self() {
return this;
}
public final NonCapturingGroup attrSubExpr(String attrSubExpr) {
this.visitor.visitAttributeSubExpr(attrSubExpr);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy