jwikidump.entidad.mapeos
Enum XMLPagina

java.lang.Object
  extended by java.lang.Enum<XMLPagina>
      extended by jwikidump.entidad.mapeos.XMLPagina
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<XMLPagina>

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


Enum Constant Summary
id
           
nombreEnXML
          Nombre del Elemento Pagina que contiene el resto de los atributos aqui descriptos
redireccionar
          La presencia de este Elemento indica que la Pagina redirecciona a Otra.
revision
           
titulo
           
 
Field Summary
static byte NIVEL
          Constante que indica el Nivel (de acceso) del Nodo Pagina dentro del XML
static java.lang.String PAGINA_ID
          Constante que determina en la Estructura Temporal (creada por JWikiHandler) el Atributo ID de Pagina.
 
Method Summary
 java.lang.String getNombreDelElemento()
          Devuelve el Nombre del Elemento dentro del XML Dump
 java.lang.String toString()
           
static XMLPagina valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XMLPagina[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

nombreEnXML

public static final XMLPagina nombreEnXML
Nombre del Elemento Pagina que contiene el resto de los atributos aqui descriptos


id

public static final XMLPagina id

titulo

public static final XMLPagina titulo

revision

public static final XMLPagina revision

redireccionar

public static final XMLPagina redireccionar
La presencia de este Elemento indica que la Pagina redirecciona a Otra.
En el Texto de la Revision (Revision.texto) se encuentra seteado con una instruccion especial:
      #redirección [[TITULO_DE_LA_PAGINA]]
 

Field Detail

PAGINA_ID

public static final java.lang.String PAGINA_ID
Constante que determina en la Estructura Temporal (creada por JWikiHandler) el Atributo ID de Pagina. Esto es por que existen tres IDs pertenecientes a: Pagina, Revision y Contribuidor. Este ID es el unico que se "mantiene intacto"


NIVEL

public static final byte NIVEL
Constante que indica el Nivel (de acceso) del Nodo Pagina dentro del XML

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

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

getNombreDelElemento

public java.lang.String getNombreDelElemento()
Devuelve el Nombre del Elemento dentro del XML Dump

Returns:

toString

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