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

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

package org.unlaxer.parser;

public enum ChildOccurs{
	none,
	single,
	multi,
	;
	public boolean isNone(){
		return this == none;
	}
	public boolean isSingle(){
		return this == single;
	}
	public boolean isMulti(){
		return this == multi;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy