public enum ARFFMode extends Enum<ARFFMode>
Enum Constant and Description |
---|
DENSE
Dense is represented densely.
|
SPARSE
Data is represented sparsely.
|
Modifier and Type | Method and Description |
---|---|
static ARFFMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ARFFMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARFFMode SPARSE
public static final ARFFMode DENSE
public static ARFFMode[] values()
for (ARFFMode c : ARFFMode.values()) System.out.println(c);
public static ARFFMode 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 © 2020 Actian Corporation. All rights reserved.