org.unlaxer.vocabulary.ebnf.part1.SecondQuoteSymbol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebnf Show documentation
Show all versions of ebnf Show documentation
a simple parser combinator inspired by RelaxNG
The newest version!
package org.unlaxer.vocabulary.ebnf.part1;
import org.unlaxer.Name;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;
/**
* second quote symbol = ’"’;
*
*/
public class SecondQuoteSymbol extends MappedSingleCharacterParser{
private static final long serialVersionUID = -3482785381520077845L;
public SecondQuoteSymbol() {
this(null);
}
public SecondQuoteSymbol(Name name) {
super(name, '"');
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy