public enum GrauSatisfacao extends java.lang.Enum<GrauSatisfacao>
Enum Constant and Description |
---|
INDIFERENTE |
INSATISFEITO |
MUITO_INSATISFEITO |
MUITO_SATISFEITO |
NAO_INFORMADO |
SATISFEITO |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValor() |
static GrauSatisfacao |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GrauSatisfacao[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrauSatisfacao NAO_INFORMADO
public static final GrauSatisfacao MUITO_INSATISFEITO
public static final GrauSatisfacao INSATISFEITO
public static final GrauSatisfacao INDIFERENTE
public static final GrauSatisfacao SATISFEITO
public static final GrauSatisfacao MUITO_SATISFEITO
public static GrauSatisfacao[] values()
for (GrauSatisfacao c : GrauSatisfacao.values()) System.out.println(c);
public static GrauSatisfacao valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValor()