jwikidump.entidad.mapeos
Enum XMLRevision

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

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

Enumerativos que Mapean los Nombres de los Elementos del Elemento Revision


Enum Constant Summary
comentario
          Atributo ignorado
contribuidor
           
fecha
           
id
           
menor
          Atributo ignorado
nombreEnXML
          Nombre del Elemento Revision que contiene el resto de los atributos aqui descriptos
texto
           
 
Field Summary
static byte NIVEL
          Constante que indica el Nivel (de acceso logico) del Nodo Pagina dentro del XML
static java.lang.String REVISION_ID
          Constante que determina en la Estructura Temporal (creada por JWikiHandler) el Atributo ID de revision.
 
Method Summary
 java.lang.String getNombreDelElemento()
          Devuelve el Nombre del Elemento dentro del XML Dump
 java.lang.String toString()
           
static XMLRevision valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XMLRevision[] 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 XMLRevision nombreEnXML
Nombre del Elemento Revision que contiene el resto de los atributos aqui descriptos


id

public static final XMLRevision id

fecha

public static final XMLRevision fecha

contribuidor

public static final XMLRevision contribuidor

texto

public static final XMLRevision texto

menor

public static final XMLRevision menor
Atributo ignorado


comentario

public static final XMLRevision comentario
Atributo ignorado

Field Detail

REVISION_ID

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

See Also:
Constant Field Values

NIVEL

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

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

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