Enum DataFormat.Type
- java.lang.Object
-
- java.lang.Enum<DataFormat.Type>
-
- com.oracle.bmc.dataintegration.model.DataFormat.Type
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DataFormat.Type>
- Enclosing class:
- DataFormat
public static enum DataFormat.Type extends Enum<DataFormat.Type> implements BmcEnum
type
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataFormat.Type
create(String key)
String
getValue()
static DataFormat.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataFormat.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Xml
public static final DataFormat.Type Xml
-
Json
public static final DataFormat.Type Json
-
Csv
public static final DataFormat.Type Csv
-
Orc
public static final DataFormat.Type Orc
-
Parquet
public static final DataFormat.Type Parquet
-
Avro
public static final DataFormat.Type Avro
-
UnknownEnumValue
public static final DataFormat.Type UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static DataFormat.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataFormat.Type c : DataFormat.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataFormat.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static DataFormat.Type create(String key)
-
-