Enum CounterTransitivityReasoner.solver
java.lang.Object
java.lang.Enum<CounterTransitivityReasoner.solver>
org.tweetyproject.arg.rankings.reasoner.CounterTransitivityReasoner.solver
- All Implemented Interfaces:
Serializable
,Comparable<CounterTransitivityReasoner.solver>
,Constable
- Enclosing class:
CounterTransitivityReasoner
public static enum CounterTransitivityReasoner.solver
extends Enum<CounterTransitivityReasoner.solver>
The solver used to determine the ranking of arguments.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionStrategy based on the cardinality (number) of arguments.Strategy that prioritizes cardinality over quality.Strategy using the greatest fixed-point (GFP) cardinality.Strategy based on the quality of arguments.Strategy that prioritizes quality over cardinality.Strategy based on simple dominance relationships between arguments. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static CounterTransitivityReasoner.solver[]
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
-
quality
Strategy based on the quality of arguments. -
cardinality
Strategy based on the cardinality (number) of arguments. -
qualityFirst
Strategy that prioritizes quality over cardinality. -
cardinalityFirst
Strategy that prioritizes cardinality over quality. -
gfpCardinality
Strategy using the greatest fixed-point (GFP) cardinality. -
simpleDominance
Strategy based on simple dominance relationships between arguments.
-
-
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
-