com.innovativeastrosolutions.astrosoftcore.consts.Roman Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AstrosoftCore Show documentation
Show all versions of AstrosoftCore Show documentation
https://github.com/erajasekar/AstrosoftCore
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