org.unlaxer.parser.elementary.EscapeInQuotedParser Maven / Gradle / Ivy
package org.unlaxer.parser.elementary;
import org.unlaxer.Name;
import org.unlaxer.parser.Parsers;
import org.unlaxer.parser.StaticParser;
import org.unlaxer.parser.ascii.BackSlashParser;
import org.unlaxer.parser.combinator.LazyChain;
public class EscapeInQuotedParser extends LazyChain implements StaticParser{
private static final long serialVersionUID = -3666240429142759284L;
public EscapeInQuotedParser() {
super();
}
public EscapeInQuotedParser(Name name) {
super(name);
}
@Override
public Parsers getLazyParsers(){
return new Parsers(
BackSlashParser.class,
WildCardStringParser.class
);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy