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

org.unix4j.option.Option Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.option;

/**
 * Interface usually implemented by option enums.
 */
public interface Option {
	/**
	 * Returns the option name, usually the same as the enum constant name.
	 * 
	 * @return the option long name
	 */
	String name();

	/**
	 * Returns a one letter acronym for this option.
	 * 
	 * @return the acronym character used for this option.
	 */
	char acronym();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy