edugraf.jadix
Enum Temas

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

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

Enumeração dos temas que acompanham o Dix.


Enum Constant Summary
BOI_DE_MAMÃO
           
CAMPECHE
           
GUARAPUVU
           
JOAQUINA
           
MARTIM_PESCADOR
           
RATONES
           
 
Method Summary
 java.lang.String obterNome()
          Retorna a representação em String do Tema.
static Temas obterTema(java.lang.String nome)
          Retorna o Tema correspondente ao parâmetro String especificado.
static Temas valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Temas[] 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

BOI_DE_MAMÃO

public static final Temas BOI_DE_MAMÃO

CAMPECHE

public static final Temas CAMPECHE

GUARAPUVU

public static final Temas GUARAPUVU

JOAQUINA

public static final Temas JOAQUINA

MARTIM_PESCADOR

public static final Temas MARTIM_PESCADOR

RATONES

public static final Temas RATONES
Method Detail

values

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

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

valueOf

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

obterTema

public static Temas obterTema(java.lang.String nome)
Retorna o Tema correspondente ao parâmetro String especificado.

Parameters:
nome - o nome do tema.
Returns:
o tema especificado.

obterNome

public java.lang.String obterNome()
Retorna a representação em String do Tema.

Returns:
o String do Tema.