Class SemanticNetwork

java.lang.Object
org.episteme.social.linguistics.SemanticNetwork

public class SemanticNetwork extends Object
The SemanticNetwork class provides a representation for the semantic information that can be extracted from a text.
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Antonymy relation (A denotes the opposite of B).
    static final int
    Holonymy relation (B has A as a part of itself).
    static final int
    Hypernymy relation (A is superordinate of B).
    static final int
    Hyponymy relation (A is subordinate of B; A is kind of B).
    static final int
    Meronymy relation (A is part of B).
    static final int
    Other miscellaneous or custom semantic relation.
    static final int
    Synonymy relation (A denotes the same as B).
    static final int
    Unknown or undefined semantic relation.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • UNKNOWN

      public static final int UNKNOWN
      Unknown or undefined semantic relation.
      See Also:
    • MERONYMY

      public static final int MERONYMY
      Meronymy relation (A is part of B).
      See Also:
    • HOLONYMY

      public static final int HOLONYMY
      Holonymy relation (B has A as a part of itself).
      See Also:
    • HYPONYMY

      public static final int HYPONYMY
      Hyponymy relation (A is subordinate of B; A is kind of B).
      See Also:
    • HYPERNYMY

      public static final int HYPERNYMY
      Hypernymy relation (A is superordinate of B).
      See Also:
    • SYNONYMY

      public static final int SYNONYMY
      Synonymy relation (A denotes the same as B).
      See Also:
    • ANTONYMY

      public static final int ANTONYMY
      Antonymy relation (A denotes the opposite of B).
      See Also:
    • OTHER

      public static final int OTHER
      Other miscellaneous or custom semantic relation.
      See Also:
  • Constructor Details

    • SemanticNetwork

      public SemanticNetwork()