public enum UF extends Enum<UF>
Enum Constant and Description |
---|
AC |
AL |
AM |
AP |
BA |
CE |
DF |
ES |
GO |
MA |
MG |
MS |
MT |
PA |
PB |
PE |
PI |
PR |
RJ |
RN |
RO |
RR |
RS |
SC |
SE |
SP |
TO |
Modifier and Type | Method and Description |
---|---|
String |
getNome()
Retorna o nome da UF.
|
String |
toString() |
static UF |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UF[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UF AC
public static final UF AL
public static final UF AP
public static final UF AM
public static final UF BA
public static final UF CE
public static final UF DF
public static final UF ES
public static final UF GO
public static final UF MA
public static final UF MT
public static final UF MS
public static final UF MG
public static final UF PA
public static final UF PB
public static final UF PR
public static final UF PE
public static final UF PI
public static final UF RJ
public static final UF RN
public static final UF RS
public static final UF RO
public static final UF RR
public static final UF SC
public static final UF SP
public static final UF SE
public static final UF TO
public static UF[] values()
for (UF c : UF.values()) System.out.println(c);
public static UF valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getNome()
Copyright © 2014. All rights reserved.