public static enum DataOptions.InputFormat extends Enum<DataOptions.InputFormat>
Enum Constant and Description |
---|
COLUMNAR |
CSV |
LIBSVM |
SERIALIZED |
TEXT |
Modifier and Type | Method and Description |
---|---|
static DataOptions.InputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataOptions.InputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataOptions.InputFormat SERIALIZED
public static final DataOptions.InputFormat LIBSVM
public static final DataOptions.InputFormat TEXT
public static final DataOptions.InputFormat CSV
public static final DataOptions.InputFormat COLUMNAR
public static DataOptions.InputFormat[] values()
for (DataOptions.InputFormat c : DataOptions.InputFormat.values()) System.out.println(c);
public static DataOptions.InputFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.