edugraf.jadix.tiposPrimitivos
Enum TipoGenerico.Tipos

java.lang.Object
  extended by java.lang.Enum<TipoGenerico.Tipos>
      extended by edugraf.jadix.tiposPrimitivos.TipoGenerico.Tipos
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TipoGenerico.Tipos>
Enclosing class:
TipoGenerico

public static enum TipoGenerico.Tipos
extends java.lang.Enum<TipoGenerico.Tipos>

Enumeração dos tipos da classe TipoGenerico.


Enum Constant Summary
Lista
          Nome associado a uma lista.
Numero
          Nome associado a um número.
Texto
          Nome associado a um texto.
 
Method Summary
static TipoGenerico.Tipos valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TipoGenerico.Tipos[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Texto

public static final TipoGenerico.Tipos Texto
Nome associado a um texto.


Numero

public static final TipoGenerico.Tipos Numero
Nome associado a um número.


Lista

public static final TipoGenerico.Tipos Lista
Nome associado a uma lista.

Method Detail

values

public static final TipoGenerico.Tipos[] 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(TipoGenerico.Tipos c : TipoGenerico.Tipos.values())
        System.out.println(c);

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

valueOf

public static TipoGenerico.Tipos 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