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

org.unlaxer.parser.combinator.NotASTLazyChoice Maven / Gradle / Ivy

package org.unlaxer.parser.combinator;

import java.util.Optional;

import org.unlaxer.Name;
import org.unlaxer.RecursiveMode;

public abstract class NotASTLazyChoice extends LazyChoice{

	private static final long serialVersionUID = 2350099853249851488L;

	public NotASTLazyChoice() {
		super();
	}

	public NotASTLazyChoice(Name name) {
		super(name);
	}
	
	
	@Override
	public Optional getNotAstNodeSpecifier() {
		return Optional.of(RecursiveMode.containsRoot);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy