org.unlaxer.vocabulary.ebnf.part1.SpaceCharacter 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
package org.unlaxer.vocabulary.ebnf.part1;
import org.unlaxer.Name;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;
/**
* (* see 7.6 *) space character = ’ ’;
*
*/
public class SpaceCharacter extends MappedSingleCharacterParser{
private static final long serialVersionUID = 3528119497296884497L;
public SpaceCharacter() {
this(null);
}
public SpaceCharacter(Name name){
super(name , ' ');
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy