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

com.innovativeastrosolutions.astrosoftcore.consts.Roman Maven / Gradle / Ivy

The newest version!
/**
 * Roman.java
 * Created On 2006, Feb 25, 2006 3:04:07 PM
 * @author E. Rajasekar
 */

package com.innovativeastrosolutions.astrosoftcore.consts;

public enum Roman {
	I,
	II,
	III,
	IV,
	V,
	VI,
	VII,
	VIII,
	IX,
	X,
	XI,
	XII;
	
	public static Roman of(int number){
		return values()[number - 1];
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy