Enum Class EAFSemantics
- All Implemented Interfaces:
Serializable
,Comparable<EAFSemantics>
,Constable
This enum lists all semantics for Epistemic 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 EAFSemantics
Static constants for admissible semanticsstatic final EAFSemantics
Static constants for complete semanticsstatic final EAFSemantics
Static constants for grounded semanticsstatic final EAFSemantics
Static constants for preferred semanticsstatic final EAFSemantics
Static constants for stable semantics -
Method Summary
Modifier and TypeMethodDescriptionReturns the abbreviation of the semantics.Returns the description of the semantics.static EAFSemantics
getSemantics
(String abbreviation) Returns the semantics whose abbreviation matches the given string.static EAFSemantics
Returns the enum constant of this class with the specified name.static EAFSemantics[]
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
-
EAF_ADM
ADM -
EAF_GR
GR -
EAF_CO
CO -
EAF_PR
PR -
EAF_ST
ST
-
-
Field Details
-
EAF_GROUNDED_SEMANTICS
Static constants for grounded semantics -
EAF_COMPLETE_SEMANTICS
Static constants for complete semantics -
EAF_STABLE_SEMANTICS
Static constants for stable semantics -
EAF_PREFERRED_SEMANTICS
Static constants for preferred semantics -
EAF_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.
-