Package org.tribuo.data
Enum Class DataOptions.InputFormat
- All Implemented Interfaces:
Serializable
,Comparable<DataOptions.InputFormat>
,Constable
- Enclosing class:
- DataOptions
The input formats supported by this options object.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA CSV file parsed using a configuredRowProcessor
.Simple numeric CSV file.LibSVM/svm-light format data.Serialized Tribuo datasets.Protobuf serialized Tribuo datasets.Text data in Tribuo's standard format (i.e., each line is "output ## text data"). -
Method Summary
Modifier and TypeMethodDescriptionstatic DataOptions.InputFormat
Returns the enum constant of this class with the specified name.static DataOptions.InputFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SERIALIZED
Serialized Tribuo datasets. -
SERIALIZED_PROTOBUF
Protobuf serialized Tribuo datasets. -
LIBSVM
LibSVM/svm-light format data. -
TEXT
Text data in Tribuo's standard format (i.e., each line is "output ## text data"). -
CSV
Simple numeric CSV file. -
COLUMNAR
A CSV file parsed using a configuredRowProcessor
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-