Enum Class IndustrialProfile.ToolTier
- All Implemented Interfaces:
Serializable, Comparable<IndustrialProfile.ToolTier>, Constable
- Enclosing class:
IndustrialProfile
Explicit trust tier for each tool. This separation is enforced in code, not just documented.
- Version:
- 1.0
- Author:
- Even Solbraa
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTier 2 — Engineering advanced.Tier 3 — Experimental/research.Tier 1 — Trusted core. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IndustrialProfile.ToolTierReturns the enum constant of this class with the specified name.static IndustrialProfile.ToolTier[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRUSTED_CORE
Tier 1 — Trusted core. Validated against NIST/experimental data, documented accuracy bounds, clear error behavior. Available in all deployment modes including ENTERPRISE. -
ENGINEERING_ADVANCED
Tier 2 — Engineering advanced. Tested against literature/industry cases, suitable for screening studies. Available in DESKTOP_ENGINEER and STUDY_TEAM. -
EXPERIMENTAL
Tier 3 — Experimental/research. Functional but limited validation, or high-autonomy tools that are hard to validate. Available in DESKTOP_ENGINEER only.
-
-
Constructor Details
-
ToolTier
private ToolTier()
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-