Enum Class IndustrialProfile.DeploymentMode
java.lang.Object
java.lang.Enum<IndustrialProfile.DeploymentMode>
neqsim.mcp.runners.IndustrialProfile.DeploymentMode
- All Implemented Interfaces:
Serializable, Comparable<IndustrialProfile.DeploymentMode>, Constable
- Enclosing class:
IndustrialProfile
Deployment mode for the MCP server.
- Version:
- 1.0
- Author:
- Even Solbraa
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFull access for a single engineer.Read-heavy advisory mode for plant operations support.Restricted enterprise mode with approval gates and rate limiting.Collaborative mode with session isolation and audit logging. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static IndustrialProfile.DeploymentMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DESKTOP_ENGINEER
Full access for a single engineer. All tools available. -
STUDY_TEAM
Collaborative mode with session isolation and audit logging. -
DIGITAL_TWIN
Read-heavy advisory mode for plant operations support. -
ENTERPRISE
Restricted enterprise mode with approval gates and rate limiting.
-
-
Constructor Details
-
DeploymentMode
private DeploymentMode()
-
-
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
-