public enum InputFormatType extends Enum<InputFormatType>
InputFormatType represents the input format enumeration types.| Enum Constant | Description |
|---|---|
CSV |
CSV format.
|
INPUT_STREAM |
InputStream format.
|
OBJECT |
Object format.
|
XML |
XML format.
|
| Modifier and Type | Method | Description |
|---|---|---|
static InputFormatType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static InputFormatType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputFormatType XML
public static final InputFormatType CSV
public static final InputFormatType OBJECT
public static final InputFormatType INPUT_STREAM
public static InputFormatType[] values()
for (InputFormatType c : InputFormatType.values()) System.out.println(c);
public static InputFormatType 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 © 2025. All rights reserved.