Enum PropagationRankingReasoner.PropagationSemantics
java.lang.Object
java.lang.Enum<PropagationRankingReasoner.PropagationSemantics>
org.tweetyproject.arg.rankings.reasoner.PropagationRankingReasoner.PropagationSemantics
- All Implemented Interfaces:
Serializable
,Comparable<PropagationRankingReasoner.PropagationSemantics>
,Constable
- Enclosing class:
PropagationRankingReasoner
public static enum PropagationRankingReasoner.PropagationSemantics
extends Enum<PropagationRankingReasoner.PropagationSemantics>
The three propagation semantics:
- PROPAGATION1 ("Propa_epsilon")
- PROPAGATION2 ("Propa_{1+epsilon}")
- PROPAGATION3 ("Propa_{1->epsilon}")
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe first propagation semantics approach.The second propagation semantics approach.The third propagation semantics approach. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.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
-
PROPAGATION1
The first propagation semantics approach. -
PROPAGATION2
The second propagation semantics approach. -
PROPAGATION3
The third propagation semantics approach.
-
-
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
-