Enum UPDMProfile.RuleKindEnum

    • Enum Constant Detail

      • STRUCTURALASSERTION

        public static final UPDMProfile.RuleKindEnum STRUCTURALASSERTION
        Statement that something of importance to the business either exists as a concept of interest or exists in relationship to another thing of interest.
      • ACTIONASSERTION

        public static final UPDMProfile.RuleKindEnum ACTIONASSERTION
        Statement that concerns some dynamic aspect of the business.
      • AGREEMENT

        public static final UPDMProfile.RuleKindEnum AGREEMENT
        A consent among parties regarding the terms and conditions of activities that said parties participate in.
      • CONSTRAINT

        public static final UPDMProfile.RuleKindEnum CONSTRAINT
        Business Rule, Rule, Restraint, Operational Limitation.
      • GUIDANCE

        public static final UPDMProfile.RuleKindEnum GUIDANCE
        An authoritative statement intended to lead or steer the execution of actions.
      • SECURITYPOLICY

        public static final UPDMProfile.RuleKindEnum SECURITYPOLICY
        An OperationalConstraint that specifies policy for information handling, physical security, encryption, etc.
    • Method Detail

      • values

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

        public static UPDMProfile.RuleKindEnum valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getText

        public java.lang.String getText()