geneticWedge.gp.io
Enum XMLTreeHandler.IncludeData

java.lang.Object
  extended by java.lang.Enum<XMLTreeHandler.IncludeData>
      extended by geneticWedge.gp.io.XMLTreeHandler.IncludeData
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<XMLTreeHandler.IncludeData>
Enclosing class:
XMLTreeHandler

public static enum XMLTreeHandler.IncludeData
extends java.lang.Enum<XMLTreeHandler.IncludeData>

IncludeData determines which data will be retrieved from the XML file. This is useful when an element and an attribute have the same name.


Enum Constant Summary
ATTRIBUTES_ONLY
          Only attributess are retrieved
ELEMENTS_AND_ATTRIBUTES
          Elements and attributes both retrieved
ELEMENTS_ONLY
          Only elements are retrieved
 
Method Summary
static XMLTreeHandler.IncludeData valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XMLTreeHandler.IncludeData[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ELEMENTS_AND_ATTRIBUTES

public static final XMLTreeHandler.IncludeData ELEMENTS_AND_ATTRIBUTES
Elements and attributes both retrieved


ELEMENTS_ONLY

public static final XMLTreeHandler.IncludeData ELEMENTS_ONLY
Only elements are retrieved


ATTRIBUTES_ONLY

public static final XMLTreeHandler.IncludeData ATTRIBUTES_ONLY
Only attributess are retrieved

Method Detail

values

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

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

valueOf

public static XMLTreeHandler.IncludeData 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