Package com.nomagic.magicdraw.sysml.util
Enum SysMLProfile.VerificationMethodKindEnum
- java.lang.Object
-
- java.lang.Enum<SysMLProfile.VerificationMethodKindEnum>
-
- com.nomagic.magicdraw.sysml.util.SysMLProfile.VerificationMethodKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SysMLProfile.VerificationMethodKindEnum>
- Enclosing class:
- SysMLProfile
public static enum SysMLProfile.VerificationMethodKindEnum extends java.lang.Enum<SysMLProfile.VerificationMethodKindEnum>
1) Analysis indicates that verification will be performed by technical evaluation using mathematical representations, charts, graphs, circuit diagrams, data reduction, or representative data. Analysis also includes the verification of requirements under conditions, which are simulated or modeled; where the results are derived from the analysis of the results produced by the model, 2) Demonstration indicates that verification will be performed by operation, movement or adjustment of the item under specific conditions to perform the design functions without recording of quantitative data. Demonstration is typically considered the least restrictive of the verification types, 3) Inspection indicates that verification will be performed by examination of the item, reviewing descriptive documentation, and comparing the appropriate characteristics with a predetermined standard to determine conformance to requirements without the use of special laboratory equipment or procedures, and 4) Test indicates that verification will be performed through systematic exercising of the applicable item under appropriate conditions with instrumentation to measure required parameters and the collection, analysis, and evaluation of quantitative data to show that measured parameters equal or exceed specified requirements.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS
Analysis indicates that verification will be performed by technical evaluation using mathematical representations, charts, graphs, circuit diagrams, data reduction, or representative data.DEMONSTRATION
Demonstration indicates that verification will be performed by operation, movement or adjustment of the item under specific conditions to perform the design functions without recording of quantitative data.INSPECTION
Inspection indicates that verification will be performed by examination of the item, reviewing descriptive documentation, and comparing the appropriate characteristics with a predetermined standard to determine conformance to requirements without the use of special laboratory equipment or proceduresTEST
Test indicates that verification will be performed through systematic exercising of the applicable item under appropriate conditions with instrumentation to measure required parameters and the collection, analysis, and evaluation of quantitative data to show that measured parameters equal or exceed specified requirements
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SysMLProfile.VerificationMethodKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static SysMLProfile.VerificationMethodKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(SysMLProfile profile, SysMLProfile.VerificationMethodKindEnum anEnum)
static SysMLProfile.VerificationMethodKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SysMLProfile.VerificationMethodKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANALYSIS
public static final SysMLProfile.VerificationMethodKindEnum ANALYSIS
Analysis indicates that verification will be performed by technical evaluation using mathematical representations, charts, graphs, circuit diagrams, data reduction, or representative data. Analysis also includes the verification of requirements under conditions, which are simulated or modeled; where the results are derived from the analysis of the results produced by the model
-
DEMONSTRATION
public static final SysMLProfile.VerificationMethodKindEnum DEMONSTRATION
Demonstration indicates that verification will be performed by operation, movement or adjustment of the item under specific conditions to perform the design functions without recording of quantitative data. Demonstration is typically considered the least restrictive of the verification types
-
INSPECTION
public static final SysMLProfile.VerificationMethodKindEnum INSPECTION
Inspection indicates that verification will be performed by examination of the item, reviewing descriptive documentation, and comparing the appropriate characteristics with a predetermined standard to determine conformance to requirements without the use of special laboratory equipment or procedures
-
TEST
public static final SysMLProfile.VerificationMethodKindEnum TEST
Test indicates that verification will be performed through systematic exercising of the applicable item under appropriate conditions with instrumentation to measure required parameters and the collection, analysis, and evaluation of quantitative data to show that measured parameters equal or exceed specified requirements
-
-
Method Detail
-
values
public static SysMLProfile.VerificationMethodKindEnum[] 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 (SysMLProfile.VerificationMethodKindEnum c : SysMLProfile.VerificationMethodKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SysMLProfile.VerificationMethodKindEnum 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 SysMLProfile.VerificationMethodKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static SysMLProfile.VerificationMethodKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(SysMLProfile profile, SysMLProfile.VerificationMethodKindEnum anEnum)
-
-