Enum Class EAFSemantics

java.lang.Object
java.lang.Enum<EAFSemantics>
org.tweetyproject.arg.eaf.semantics.EAFSemantics
All Implemented Interfaces:
Serializable, Comparable<EAFSemantics>, Constable

public enum EAFSemantics extends Enum<EAFSemantics>
This enum lists all semantics for Epistemic Argumentation Frameworks.
Author:
Sandra Hoffmann
  • Enum Constant Details

  • Field Details

    • EAF_GROUNDED_SEMANTICS

      public static final EAFSemantics EAF_GROUNDED_SEMANTICS
      Static constants for grounded semantics
    • EAF_COMPLETE_SEMANTICS

      public static final EAFSemantics EAF_COMPLETE_SEMANTICS
      Static constants for complete semantics
    • EAF_STABLE_SEMANTICS

      public static final EAFSemantics EAF_STABLE_SEMANTICS
      Static constants for stable semantics
    • EAF_PREFERRED_SEMANTICS

      public static final EAFSemantics EAF_PREFERRED_SEMANTICS
      Static constants for preferred semantics
    • EAF_ADMISSIBLE_SEMANTICS

      public static final EAFSemantics EAF_ADMISSIBLE_SEMANTICS
      Static constants for admissible semantics
  • Method Details

    • values

      public static EAFSemantics[] 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

      public static EAFSemantics valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • description

      public String description()
      Returns the description of the semantics.
      Returns:
      the description of the semantics.
    • abbreviation

      public String abbreviation()
      Returns the abbreviation of the semantics.
      Returns:
      the abbreviation of the semantics.
    • getSemantics

      public static EAFSemantics getSemantics(String abbreviation)
      Returns the semantics whose abbreviation matches the given string.
      Parameters:
      abbreviation - Abbreviation of the semantics to return.
      Returns:
      Semantics with the specified abbreviation.