io.writer
Enum ExporterFactory.ExporterType
java.lang.Object
java.lang.Enum<ExporterFactory.ExporterType>
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>
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 |
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
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