Enum DataEntityDetails.ModelType
- java.lang.Object
-
- java.lang.Enum<DataEntityDetails.ModelType>
-
- com.oracle.bmc.dataintegration.model.DataEntityDetails.ModelType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DataEntityDetails.ModelType>
- Enclosing class:
- DataEntityDetails
public static enum DataEntityDetails.ModelType extends Enum<DataEntityDetails.ModelType> implements BmcEnum
The data entity type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DataStoreEntity
FileEntity
ObjectEntity
SqlEntity
TableEntity
ViewEntity
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataEntityDetails.ModelType
create(String key)
String
getValue()
static DataEntityDetails.ModelType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataEntityDetails.ModelType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ViewEntity
public static final DataEntityDetails.ModelType ViewEntity
-
TableEntity
public static final DataEntityDetails.ModelType TableEntity
-
FileEntity
public static final DataEntityDetails.ModelType FileEntity
-
SqlEntity
public static final DataEntityDetails.ModelType SqlEntity
-
ObjectEntity
public static final DataEntityDetails.ModelType ObjectEntity
-
DataStoreEntity
public static final DataEntityDetails.ModelType DataStoreEntity
-
-
Method Detail
-
values
public static DataEntityDetails.ModelType[] 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 (DataEntityDetails.ModelType c : DataEntityDetails.ModelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataEntityDetails.ModelType 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 DataEntityDetails.ModelType create(String key)
-
-