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

org.unlaxer.parser.ChoiceParsers Maven / Gradle / Ivy

package org.unlaxer.parser;

import java.util.List;

public class ChoiceParsers extends Parsers{

	private static final long serialVersionUID = -7959572145076832575L;

	public ChoiceParsers(List> parsers) {
		super(parsers);
	}

	@SafeVarargs
	public ChoiceParsers(Class... parsers) {
		super(parsers);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy