jwikidump.entidad.mapeos
Enum XMLContribuidor

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

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

Enumerativos que Mapean los Nombres de los Elementos del Elemento Contribuidor


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


id

public static final XMLContribuidor id

nombre

public static final XMLContribuidor nombre

ip

public static final XMLContribuidor ip
Field Detail

CONTRIBUIDOR_ID

public static final java.lang.String CONTRIBUIDOR_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) del Nodo Pagina dentro del XML

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

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