Enum DifferenceColumn.PlannedAction

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<DifferenceColumn.PlannedAction>
    Enclosing class:
    DifferenceColumn

    public static enum DifferenceColumn.PlannedAction
    extends Enum<DifferenceColumn.PlannedAction>
    implements BmcEnum
    Specifies how to process the difference column.

    It’s set to SYNC by default. Use the PatchSdmMaskingPolicyDifferenceColumns operation to update this attribute. You can choose one of the following options: SYNC: To sync the difference column and update the masking policy to reflect the changes. NO_SYNC: To not sync the difference column so that it doesn’t change the masking policy. After specifying the planned action, you can use the ApplySdmMaskingPolicyDifference operation to automatically process the difference columns.

    • Method Detail

      • values

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

        public static DifferenceColumn.PlannedAction 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