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

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

package org.unlaxer.parser.combinator;

import org.unlaxer.Name;

public abstract class LazyZero extends LazyOccurs{

	private static final long serialVersionUID = 4663586368647043291L;

	public LazyZero() {
		super();
	}

	public LazyZero(Name name) {
		super(name);
	}
	
	@Override
	public int min() {
		return 0;
	}

	@Override
	public int max() {
		return 0;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy