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