Enum Class IndustrialProfile.ToolTier

java.lang.Object
java.lang.Enum<IndustrialProfile.ToolTier>
neqsim.mcp.runners.IndustrialProfile.ToolTier
All Implemented Interfaces:
Serializable, Comparable<IndustrialProfile.ToolTier>, Constable
Enclosing class:
IndustrialProfile

public static enum IndustrialProfile.ToolTier extends Enum<IndustrialProfile.ToolTier>
Explicit trust tier for each tool. This separation is enforced in code, not just documented.
Version:
1.0
Author:
Even Solbraa
  • Enum Constant Details

    • TRUSTED_CORE

      public static final IndustrialProfile.ToolTier 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

      public static final IndustrialProfile.ToolTier ENGINEERING_ADVANCED
      Tier 2 — Engineering advanced. Tested against literature/industry cases, suitable for screening studies. Available in DESKTOP_ENGINEER and STUDY_TEAM.
    • EXPERIMENTAL

      public static final IndustrialProfile.ToolTier 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

      public static IndustrialProfile.ToolTier[] 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 IndustrialProfile.ToolTier 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