All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.vocabulary.ebnf.part1.SecondQuoteSymbol Maven / Gradle / Ivy

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