org.eaglei.datatools.etl.server.extractor
Enum ExtractorFactory.ExtractorType

java.lang.Object
  extended by java.lang.Enum<ExtractorFactory.ExtractorType>
      extended by org.eaglei.datatools.etl.server.extractor.ExtractorFactory.ExtractorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExtractorFactory.ExtractorType>
Enclosing class:
ExtractorFactory

public static enum ExtractorFactory.ExtractorType
extends java.lang.Enum<ExtractorFactory.ExtractorType>


Enum Constant Summary
csv
           
excel
           
excel2003
           
json
           
rdf
           
tsv
           
xml
           
 
Method Summary
 java.lang.String getExtension()
           
static ExtractorFactory.ExtractorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExtractorFactory.ExtractorType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

excel

public static final ExtractorFactory.ExtractorType excel

excel2003

public static final ExtractorFactory.ExtractorType excel2003

xml

public static final ExtractorFactory.ExtractorType xml

csv

public static final ExtractorFactory.ExtractorType csv

tsv

public static final ExtractorFactory.ExtractorType tsv

json

public static final ExtractorFactory.ExtractorType json

rdf

public static final ExtractorFactory.ExtractorType rdf
Method Detail

values

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

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

valueOf

public static ExtractorFactory.ExtractorType 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

getExtension

public java.lang.String getExtension()


Copyright © 2009-2011 Eagle-I. All Rights Reserved.