Enum CausalReasonerPost.Cmd
- All Implemented Interfaces:
Serializable,Comparable<CausalReasonerPost.Cmd>,Constable
- Enclosing class:
- CausalReasonerPost
Describes which command should be executed by the causal reasoner
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInstructs the reasoner to calculate the corresponding argumentation framework.Instructs the reasoner to calculate the conclusionsInstructs the reasoner to calculate the sequence of explanations for all consequences.Instructs the reasoner to calculate per atom the atoms which are significant for its conclusion. -
Method Summary
Modifier and TypeMethodDescriptionstatic CausalReasonerPost.CmdReturns the enum constant of this type with the specified name.static CausalReasonerPost.Cmd[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
GET_CONCLUSIONS
Instructs the reasoner to calculate the conclusions -
GET_SIGNIFICANT_ATOMS
Instructs the reasoner to calculate per atom the atoms which are significant for its conclusion. -
GET_ARGUMENTATION_FRAMEWORK
Instructs the reasoner to calculate the corresponding argumentation framework. -
GET_SEQUENCE_EXPLANATIONS
Instructs the reasoner to calculate the sequence of explanations for all consequences.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-