edugraf.jadix.fachada
Enum TiposDeComponentesDix

java.lang.Object
  extended by java.lang.Enum<TiposDeComponentesDix>
      extended by edugraf.jadix.fachada.TiposDeComponentesDix
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TiposDeComponentesDix>

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

Enumeração representando os tipos de componentes existentes no Dix.


Enum Constant Summary
ÁREA_DE_TEXTO
          Nome associado ao componente Dix áreaDeTexto.
ÁREA_SENSÍVEL
          Nome associado ao componente Dix áreaSensível.
BOTÃO
          Nome associado ao componente Dix botão.
BOTÕES_DE_RÁDIO
          Nome associado ao componente Dix botõesDeRádio.
CAIXA_DE_ESCOLHA
          Nome associado ao componente Dix caixaDeEscolha.
CAMPO_DE_TEXTO
          Nome associado ao componente Dix campoDeTexto.
ENLACE
          Nome associado ao componente Dix enlace.
ETIQUETA
          Nome associado ao componente Dix etiqueta.
GRADE
          Nome associado ao componente Dix grade.
IMAGEM
          Nome associado ao componente Dix imagem.
LISTA_DE_ESCOLHA
          Nome associado ao componente Dix listaDeEscolha.
 
Field Summary
 java.lang.String nome
           
 
Method Summary
 java.lang.String obterCódigoParaCriação(java.lang.String nomeDoComponente)
          Método interno, não deve ser utilizado.
 java.lang.String toString()
           
static TiposDeComponentesDix valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TiposDeComponentesDix[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOTÃO

public static final TiposDeComponentesDix BOTÃO
Nome associado ao componente Dix botão.


ENLACE

public static final TiposDeComponentesDix ENLACE
Nome associado ao componente Dix enlace.


ETIQUETA

public static final TiposDeComponentesDix ETIQUETA
Nome associado ao componente Dix etiqueta.


IMAGEM

public static final TiposDeComponentesDix IMAGEM
Nome associado ao componente Dix imagem.


ÁREA_DE_TEXTO

public static final TiposDeComponentesDix ÁREA_DE_TEXTO
Nome associado ao componente Dix áreaDeTexto.


CAMPO_DE_TEXTO

public static final TiposDeComponentesDix CAMPO_DE_TEXTO
Nome associado ao componente Dix campoDeTexto.


GRADE

public static final TiposDeComponentesDix GRADE
Nome associado ao componente Dix grade.


BOTÕES_DE_RÁDIO

public static final TiposDeComponentesDix BOTÕES_DE_RÁDIO
Nome associado ao componente Dix botõesDeRádio.


CAIXA_DE_ESCOLHA

public static final TiposDeComponentesDix CAIXA_DE_ESCOLHA
Nome associado ao componente Dix caixaDeEscolha.


LISTA_DE_ESCOLHA

public static final TiposDeComponentesDix LISTA_DE_ESCOLHA
Nome associado ao componente Dix listaDeEscolha.


ÁREA_SENSÍVEL

public static final TiposDeComponentesDix ÁREA_SENSÍVEL
Nome associado ao componente Dix áreaSensível.

Field Detail

nome

public final java.lang.String nome
Method Detail

values

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

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

valueOf

public static TiposDeComponentesDix 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

obterCódigoParaCriação

public java.lang.String obterCódigoParaCriação(java.lang.String nomeDoComponente)
Método interno, não deve ser utilizado.

Parameters:
nomeDoComponente -

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<TiposDeComponentesDix>