public enum InputOutputDataType extends Enum<InputOutputDataType>
Modifier and Type | Method and Description |
---|---|
static InputOutputDataType |
fromString(String dataType) |
static InputOutputDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputOutputDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputOutputDataType CSV
public static final InputOutputDataType XML
public static final InputOutputDataType JSON
public static InputOutputDataType[] values()
for (InputOutputDataType c : InputOutputDataType.values()) System.out.println(c);
public static InputOutputDataType 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 static InputOutputDataType fromString(String dataType)
Copyright © 2020 WSO2. All rights reserved.