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

se.culvertsoft.mgen.javapack.classes.MGenEnum Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package se.culvertsoft.mgen.javapack.classes;

/**
 * Interface that all MGen generated enums implement. Used primarily by readers
 * and writers for serialization.
 */
public interface MGenEnum {

	/**
	 * Gets the name of this enum value.
	 * 
	 * @return The name of this enum value.
	 */
	public String getStringValue();

	/**
	 * Gets the integer value of this enum value.
	 * 
	 * @return The integer value of this enum value.
	 */
	public int getIntValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy