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

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

package org.unlaxer.parser.combinator;

import java.util.Optional;

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

public abstract class NotASTChildrenOnlyLazyChain extends LazyChain{

	private static final long serialVersionUID = 5394104170334904569L;

	public NotASTChildrenOnlyLazyChain() {
		super();
	}

	public NotASTChildrenOnlyLazyChain(Name name) {
		super(name);
	}

	@Override
	public Optional getNotAstNodeSpecifier() {
		return Optional.of(RecursiveMode.childrenOnly);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy