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

org.unlaxer.jaddress.parser.TopOrBottom Maven / Gradle / Ivy

The newest version!
package org.unlaxer.jaddress.parser;

public enum TopOrBottom{
	TOP,
	BOTTOM
	;
	public boolean isTop() {
		return this == TOP;
	}
	public boolean isBottom() {
		return this == BOTTOM;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy