io.writer
Enum ExporterFactory.ExporterType

java.lang.Object
  extended by java.lang.Enum<ExporterFactory.ExporterType>
      extended by io.writer.ExporterFactory.ExporterType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExporterFactory.ExporterType>
Enclosing class:
ExporterFactory

public static enum ExporterFactory.ExporterType
extends java.lang.Enum<ExporterFactory.ExporterType>


Enum Constant Summary
BENCHMARKS
           
FULL_CSV
           
LIBSVM_MATRIX
           
LIBSVM_SPARSE
           
STRING_PATTERNS
           
WEKA_HASHED
           
 
Method Summary
static ExporterFactory.ExporterType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExporterFactory.ExporterType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LIBSVM_SPARSE

public static final ExporterFactory.ExporterType LIBSVM_SPARSE

LIBSVM_MATRIX

public static final ExporterFactory.ExporterType LIBSVM_MATRIX

FULL_CSV

public static final ExporterFactory.ExporterType FULL_CSV

STRING_PATTERNS

public static final ExporterFactory.ExporterType STRING_PATTERNS

WEKA_HASHED

public static final ExporterFactory.ExporterType WEKA_HASHED

BENCHMARKS

public static final ExporterFactory.ExporterType BENCHMARKS
Method Detail

values

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

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

valueOf

public static ExporterFactory.ExporterType 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