br.gov.ans.padroes.tiss.schemas
Enum StTipoTransacao

java.lang.Object
  extended by java.lang.Enum<StTipoTransacao>
      extended by br.gov.ans.padroes.tiss.schemas.StTipoTransacao
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StTipoTransacao>

public enum StTipoTransacao
extends java.lang.Enum<StTipoTransacao>

Java class for st_tipoTransacao.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="st_tipoTransacao">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="ENVIO_LOTE_GUIAS"/>
     <enumeration value="SOLIC_DEMONSTRATIVO_RETORNO"/>
     <enumeration value="SOLIC_STATUS_PROTOCOLO"/>
     <enumeration value="SOLICITACAO_PROCEDIMENTOS"/>
     <enumeration value="PROTOCOLO_RECEBIMENTO"/>
     <enumeration value="SITUACAO_PROTOCOLO"/>
     <enumeration value="RESPOSTA_SOLICITACAO"/>
     <enumeration value="DEMONSTRATIVO_PAGAMENTO"/>
     <enumeration value="DEMONSTRATIVO_ANALISE_CONTA"/>
     <enumeration value="DEMONSTRATIVO_ODONTOLOGIA"/>
     <enumeration value="CANCELAMENTO_GUIA_RECIBO"/>
     <enumeration value="RE_APRESENTACAO_GUIA"/>
     <enumeration value="CANCELA_GUIA"/>
     <enumeration value="VERIFICA_ELEGIBILIDADE"/>
     <enumeration value="SITUACAO_ELEGIBILIDADE"/>
     <enumeration value="AUTORIZACAO_ODONTOLOGIA"/>
     <enumeration value="SOLICITA_STATUS_AUTORIZACAO"/>
     <enumeration value="STATUS_AUTORIZACAO"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AUTORIZACAO_ODONTOLOGIA
           
CANCELA_GUIA
           
CANCELAMENTO_GUIA_RECIBO
           
DEMONSTRATIVO_ANALISE_CONTA
           
DEMONSTRATIVO_ODONTOLOGIA
           
DEMONSTRATIVO_PAGAMENTO
           
ENVIO_LOTE_GUIAS
           
PROTOCOLO_RECEBIMENTO
           
RE_APRESENTACAO_GUIA
           
RESPOSTA_SOLICITACAO
           
SITUACAO_ELEGIBILIDADE
           
SITUACAO_PROTOCOLO
           
SOLIC_DEMONSTRATIVO_RETORNO
           
SOLIC_STATUS_PROTOCOLO
           
SOLICITA_STATUS_AUTORIZACAO
           
SOLICITACAO_PROCEDIMENTOS
           
STATUS_AUTORIZACAO
           
VERIFICA_ELEGIBILIDADE
           
 
Method Summary
static StTipoTransacao fromValue(java.lang.String v)
           
 java.lang.String value()
           
static StTipoTransacao valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StTipoTransacao[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENVIO_LOTE_GUIAS

public static final StTipoTransacao ENVIO_LOTE_GUIAS

SOLIC_DEMONSTRATIVO_RETORNO

public static final StTipoTransacao SOLIC_DEMONSTRATIVO_RETORNO

SOLIC_STATUS_PROTOCOLO

public static final StTipoTransacao SOLIC_STATUS_PROTOCOLO

SOLICITACAO_PROCEDIMENTOS

public static final StTipoTransacao SOLICITACAO_PROCEDIMENTOS

PROTOCOLO_RECEBIMENTO

public static final StTipoTransacao PROTOCOLO_RECEBIMENTO

SITUACAO_PROTOCOLO

public static final StTipoTransacao SITUACAO_PROTOCOLO

RESPOSTA_SOLICITACAO

public static final StTipoTransacao RESPOSTA_SOLICITACAO

DEMONSTRATIVO_PAGAMENTO

public static final StTipoTransacao DEMONSTRATIVO_PAGAMENTO

DEMONSTRATIVO_ANALISE_CONTA

public static final StTipoTransacao DEMONSTRATIVO_ANALISE_CONTA

DEMONSTRATIVO_ODONTOLOGIA

public static final StTipoTransacao DEMONSTRATIVO_ODONTOLOGIA

CANCELAMENTO_GUIA_RECIBO

public static final StTipoTransacao CANCELAMENTO_GUIA_RECIBO

RE_APRESENTACAO_GUIA

public static final StTipoTransacao RE_APRESENTACAO_GUIA

CANCELA_GUIA

public static final StTipoTransacao CANCELA_GUIA

VERIFICA_ELEGIBILIDADE

public static final StTipoTransacao VERIFICA_ELEGIBILIDADE

SITUACAO_ELEGIBILIDADE

public static final StTipoTransacao SITUACAO_ELEGIBILIDADE

AUTORIZACAO_ODONTOLOGIA

public static final StTipoTransacao AUTORIZACAO_ODONTOLOGIA

SOLICITA_STATUS_AUTORIZACAO

public static final StTipoTransacao SOLICITA_STATUS_AUTORIZACAO

STATUS_AUTORIZACAO

public static final StTipoTransacao STATUS_AUTORIZACAO
Method Detail

values

public static StTipoTransacao[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StTipoTransacao c : StTipoTransacao.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StTipoTransacao valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static StTipoTransacao fromValue(java.lang.String v)