Enum Class UAF.RuleKindEnum

java.lang.Object
java.lang.Enum<UAF.RuleKindEnum>
com.nomagic.magicdraw.uaf.UAF.RuleKindEnum
All Implemented Interfaces:
Serializable, Comparable<UAF.RuleKindEnum>, Constable
Enclosing class:
UAF

public static enum UAF.RuleKindEnum extends Enum<UAF.RuleKindEnum>
Enumeration of the possible kinds of Rules applicable to constraints.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Indicates that the Rule associated with the RuleKind is a statement that concerns some dynamic aspect.
    Indicates that the Rule associated with the RuleKind is a statement that details alternate conditions under which the rule is not valid.
    Indicates that the Rule associated with the RuleKind is a statement that details a limitation, e.g.
    Indicates that the Rule associated with the RuleKind is a statement that details a consent among parties regarding the terms and conditions of activities that said parties participate in.
    Indicates that the Rule associated with the RuleKind is a statement that details a Rule derived from another Rule.
    Indicates that the Rule associated with the RuleKind is a statement that details an authoritative statement intended to lead or steer the execution of actions.
    Indicates that the Rule associated with the RuleKind is a statement that details a constraint that specifies policy for information handling, physical security, encryption, etc.
    Indicates that the Rule associated with the RuleKind is a statement that details that something of importance either exists as a concept of interest or exists in relationship to another thing of interest.
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
     
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • STRUCTURALASSERTION

      public static final UAF.RuleKindEnum STRUCTURALASSERTION
      Indicates that the Rule associated with the RuleKind is a statement that details that something of importance either exists as a concept of interest or exists in relationship to another thing of interest.
    • ACTIONASSERTION

      public static final UAF.RuleKindEnum ACTIONASSERTION
      Indicates that the Rule associated with the RuleKind is a statement that concerns some dynamic aspect.
    • DERIVATION

      public static final UAF.RuleKindEnum DERIVATION
      Indicates that the Rule associated with the RuleKind is a statement that details a Rule derived from another Rule.
    • CONTRACT

      public static final UAF.RuleKindEnum CONTRACT
      Indicates that the Rule associated with the RuleKind is a statement that details a consent among parties regarding the terms and conditions of activities that said parties participate in.
    • CONSTRAINT

      public static final UAF.RuleKindEnum CONSTRAINT
      Indicates that the Rule associated with the RuleKind is a statement that details a limitation, e.g. business rule, restraint, operational limitation.
    • GUIDANCE

      public static final UAF.RuleKindEnum GUIDANCE
      Indicates that the Rule associated with the RuleKind is a statement that details an authoritative statement intended to lead or steer the execution of actions.
    • SECURITYPOLICY

      public static final UAF.RuleKindEnum SECURITYPOLICY
      Indicates that the Rule associated with the RuleKind is a statement that details a constraint that specifies policy for information handling, physical security, encryption, etc.
    • CAVEAT

      public static final UAF.RuleKindEnum CAVEAT
      Indicates that the Rule associated with the RuleKind is a statement that details alternate conditions under which the rule is not valid.
  • Method Details

    • values

      public static UAF.RuleKindEnum[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static UAF.RuleKindEnum valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getText

      public String getText()
    • from

      @CheckForNull public static UAF.RuleKindEnum from(@CheckForNull Object o)
    • toEnum

      @CheckForNull public static UAF.RuleKindEnum toEnum(EnumerationLiteral literal)
    • toEnumerationLiteral

      @CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.RuleKindEnum anEnum)