Enum Class CAFSemantics
- All Implemented Interfaces:
Serializable
,Comparable<CAFSemantics>
,Constable
This enum lists all semantics for Constrained Argumentation Frameworks.
- Author:
- Sandra Hoffmann
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final CAFSemantics
Static constants for admissible semanticsstatic final CAFSemantics
Static constants for grounded semanticsstatic final CAFSemantics
Static constants for preferred semanticsstatic final CAFSemantics
Static constants for stable semantics -
Method Summary
Modifier and TypeMethodDescriptionReturns the abbreviation of the semantics.Returns the description of the semantics.static CAFSemantics
getSemantics
(String abbreviation) Returns the semantics whose abbreviation matches the given string.static CAFSemantics
Returns the enum constant of this class with the specified name.static CAFSemantics[]
values()
Returns an array containing the constants of this enum class, 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
-
CAF_ADM
ADM -
CAF_GR
GR -
CAF_PR
PR -
CAF_ST
ST
-
-
Field Details
-
CAF_GROUNDED_SEMANTICS
Static constants for grounded semantics -
CAF_STABLE_SEMANTICS
Static constants for stable semantics -
CAF_PREFERRED_SEMANTICS
Static constants for preferred semantics -
CAF_ADMISSIBLE_SEMANTICS
Static constants for admissible semantics
-
-
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
-
description
Returns the description of the semantics.- Returns:
- the description of the semantics.
-
abbreviation
Returns the abbreviation of the semantics.- Returns:
- the abbreviation of the semantics.
-
getSemantics
Returns the semantics whose abbreviation matches the given string.- Parameters:
abbreviation
- Abbreviation of the semantics to return.- Returns:
- Semantics with the specified abbreviation.
-