Enum DrPlanExecutionType

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<DrPlanExecutionType>

    @Generated(value="OracleSDKGenerator",
               comments="API Version: 20220125")
    public enum DrPlanExecutionType
    extends Enum<DrPlanExecutionType>
    implements BmcEnum
    The types of DR plan execution that can be created, updated, or deleted by the user.

    Executions of type precheck cannot be created separately by the user. They are automatically generated as part of the plan, however prechecks can be executed separately from a plan. - SWITCHOVER - Switchover from primary to standby. - SWITCHOVER_PRECHECK - Precheck for switchover DR plan. - FAILOVER - Failover to standby. - FAILOVER_PRECHECK - Precheck for failover DR plan. - START_DRILL - Start DR Drill. - START_DRILL_PRECHECK - Precheck for a start drill DR plan. - STOP_DRILL - Stop DR Drill. - STOP_DRILL_PRECHECK - Precheck for a stop drill DR plan.

    • Method Detail

      • values

        public static DrPlanExecutionType[] 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 (DrPlanExecutionType c : DrPlanExecutionType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DrPlanExecutionType 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 name
        NullPointerException - if the argument is null