public enum AmbienteSistemaEnum extends Enum<AmbienteSistemaEnum>
| Enum Constant and Description |
|---|
HOMOLOGACAO |
LOCAL |
PRODUCAO |
TESTE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValor() |
static AmbienteSistemaEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmbienteSistemaEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmbienteSistemaEnum PRODUCAO
public static final AmbienteSistemaEnum HOMOLOGACAO
public static final AmbienteSistemaEnum TESTE
public static final AmbienteSistemaEnum LOCAL
public static AmbienteSistemaEnum[] values()
for (AmbienteSistemaEnum c : AmbienteSistemaEnum.values()) System.out.println(c);
public static AmbienteSistemaEnum 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 int getValor()
Copyright © 2018. All rights reserved.