public enum DatasetFormat extends Enum<DatasetFormat>
| Enum Constant and Description |
|---|
DEFAULT |
ITF |
OBJECT |
OBJECTEXTENDED |
OPTIMIZED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DatasetFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatasetFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatasetFormat DEFAULT
public static final DatasetFormat OPTIMIZED
public static final DatasetFormat OBJECT
public static final DatasetFormat OBJECTEXTENDED
public static final DatasetFormat ITF
public static DatasetFormat[] values()
for (DatasetFormat c : DatasetFormat.values()) System.out.println(c);
public static DatasetFormat 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 nullpublic String toString()
toString in class Enum<DatasetFormat>Copyright © 2025. All rights reserved.