Package com.nomagic.updm.utils
Enum UPDMProfile.RuleKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.RuleKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.RuleKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.RuleKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.RuleKindEnum extends java.lang.Enum<UPDMProfile.RuleKindEnum>
Enumeration of possible kinds for constraints.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONASSERTION
Statement that concerns some dynamic aspect of the business.AGREEMENT
A consent among parties regarding the terms and conditions of activities that said parties participate in.CONSTRAINT
Business Rule, Rule, Restraint, Operational Limitation.DERIVATION
Rule derived from another rule.GUIDANCE
An authoritative statement intended to lead or steer the execution of actions.SECURITYPOLICY
An OperationalConstraint that specifies policy for information handling, physical security, encryption, etc.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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.RuleKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.RuleKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.RuleKindEnum anEnum)
static UPDMProfile.RuleKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.RuleKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
DERIVATION
public static final UPDMProfile.RuleKindEnum DERIVATION
Rule derived from another rule.
-
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 namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static UPDMProfile.RuleKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.RuleKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.RuleKindEnum anEnum)
-
-