Created
May 29, 2018 16:44
-
-
Save nosrednawall/0ca3a32aa6f0f714a5155c102d0c6e78 to your computer and use it in GitHub Desktop.
Lista de estados do Brasil em enum java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* @author anderson | |
* Enum feito para os estados do Brasil, podendo mudar ou até adicionar indices | |
*/ | |
public enum EstadosBrasilEnum { | |
AC,AL,AP,AM,BA,CE,DF,ES,GO,MA,MT,MS,MG,PA,PB,PR,PE,PI,RJ,RN,RS,RO,RR,SC,SP,SE,TO; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment