Enum CreateSourceApplicationInfo.CopyType
- java.lang.Object
-
- java.lang.Enum<CreateSourceApplicationInfo.CopyType>
-
- com.oracle.bmc.dataintegration.model.CreateSourceApplicationInfo.CopyType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CreateSourceApplicationInfo.CopyType>
- Enclosing class:
- CreateSourceApplicationInfo
public static enum CreateSourceApplicationInfo.CopyType extends Enum<CreateSourceApplicationInfo.CopyType> implements BmcEnum
Parameter to specify the link between SOURCE and TARGET application after copying.CONNECTED
- Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Connected
Disconnected
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateSourceApplicationInfo.CopyType
create(String key)
String
getValue()
static CreateSourceApplicationInfo.CopyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CreateSourceApplicationInfo.CopyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Connected
public static final CreateSourceApplicationInfo.CopyType Connected
-
Disconnected
public static final CreateSourceApplicationInfo.CopyType Disconnected
-
-
Method Detail
-
values
public static CreateSourceApplicationInfo.CopyType[] 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 (CreateSourceApplicationInfo.CopyType c : CreateSourceApplicationInfo.CopyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateSourceApplicationInfo.CopyType 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 CreateSourceApplicationInfo.CopyType create(String key)
-
-