Enum BaseType.ModelType
- java.lang.Object
-
- java.lang.Enum<BaseType.ModelType>
-
- com.oracle.bmc.dataintegration.model.BaseType.ModelType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<BaseType.ModelType>
- Enclosing class:
- BaseType
public static enum BaseType.ModelType extends Enum<BaseType.ModelType> implements BmcEnum
The property which disciminates the subtypes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ArrayType
CompositeType
ConfiguredType
DataType
DerivedType
DynamicType
JavaType
MapType
MaterializedCompositeType
StructuredType
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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BaseType.ModelType
create(String key)
String
getValue()
static BaseType.ModelType
valueOf(String name)
Returns the enum constant of this type with the specified name.static BaseType.ModelType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DynamicType
public static final BaseType.ModelType DynamicType
-
StructuredType
public static final BaseType.ModelType StructuredType
-
DataType
public static final BaseType.ModelType DataType
-
JavaType
public static final BaseType.ModelType JavaType
-
ConfiguredType
public static final BaseType.ModelType ConfiguredType
-
CompositeType
public static final BaseType.ModelType CompositeType
-
DerivedType
public static final BaseType.ModelType DerivedType
-
ArrayType
public static final BaseType.ModelType ArrayType
-
MapType
public static final BaseType.ModelType MapType
-
MaterializedCompositeType
public static final BaseType.ModelType MaterializedCompositeType
-
UnknownEnumValue
public static final BaseType.ModelType 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 BaseType.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 (BaseType.ModelType c : BaseType.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 BaseType.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 BaseType.ModelType create(String key)
-
-