Enum Class AgentFeedbackCollector.FailureCategory
java.lang.Object
java.lang.Enum<AgentFeedbackCollector.FailureCategory>
neqsim.util.agentic.AgentFeedbackCollector.FailureCategory
- All Implemented Interfaces:
Serializable, Comparable<AgentFeedbackCollector.FailureCategory>, Constable
- Enclosing class:
AgentFeedbackCollector
public static enum AgentFeedbackCollector.FailureCategory
extends Enum<AgentFeedbackCollector.FailureCategory>
Failure category for classification of session failures.
- Version:
- 1.0
- Author:
- Even Solbraa
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJava compilation or runtime error.Flash or solver did not converge.User input was invalid or physically impossible.Required NeqSim API method or class missing.Unknown or unclassified failure.Timeout or resource exhaustion. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONVERGENCE
Flash or solver did not converge. -
MISSING_API
Required NeqSim API method or class missing. -
INVALID_INPUT
User input was invalid or physically impossible. -
CODE_ERROR
Java compilation or runtime error. -
TIMEOUT
Timeout or resource exhaustion. -
OTHER
Unknown or unclassified failure.
-
-
Constructor Details
-
FailureCategory
private FailureCategory()
-
-
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
-