public enum TipoTransacao extends java.lang.Enum<TipoTransacao>
Enum Constant and Description |
---|
LIQUIDACAO |
NOTA_FINANCEIRA |
SOLICITACAO_PAGAMENTO_RESPONSAVEL |
SOLICITACAO_TRANSFERENCIA_NUMERARIA |
SOLICITACAO_TRANSFERENCIA_RESPONSAVEL |
Modifier and Type | Field and Description |
---|---|
private java.lang.Integer |
codigo |
private java.lang.String |
label |
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getCodigo() |
java.lang.String |
getLabel() |
static TipoTransacao |
load(java.lang.Integer controleValor) |
static TipoTransacao |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TipoTransacao[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TipoTransacao LIQUIDACAO
public static final TipoTransacao NOTA_FINANCEIRA
public static final TipoTransacao SOLICITACAO_TRANSFERENCIA_NUMERARIA
public static final TipoTransacao SOLICITACAO_PAGAMENTO_RESPONSAVEL
public static final TipoTransacao SOLICITACAO_TRANSFERENCIA_RESPONSAVEL
public static TipoTransacao[] values()
for (TipoTransacao c : TipoTransacao.values()) System.out.println(c);
public static TipoTransacao 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 static TipoTransacao load(java.lang.Integer controleValor)
public java.lang.Integer getCodigo()
public java.lang.String getLabel()