Class SemanticNetwork
java.lang.Object
org.episteme.social.linguistics.SemanticNetwork
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
FieldsModifier and TypeFieldDescriptionstatic final intAntonymy relation (A denotes the opposite of B).static final intHolonymy relation (B has A as a part of itself).static final intHypernymy relation (A is superordinate of B).static final intHyponymy relation (A is subordinate of B; A is kind of B).static final intMeronymy relation (A is part of B).static final intOther miscellaneous or custom semantic relation.static final intSynonymy relation (A denotes the same as B).static final intUnknown or undefined semantic relation. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
UNKNOWN
public static final int UNKNOWNUnknown or undefined semantic relation.- See Also:
-
MERONYMY
public static final int MERONYMYMeronymy relation (A is part of B).- See Also:
-
HOLONYMY
public static final int HOLONYMYHolonymy relation (B has A as a part of itself).- See Also:
-
HYPONYMY
public static final int HYPONYMYHyponymy relation (A is subordinate of B; A is kind of B).- See Also:
-
HYPERNYMY
public static final int HYPERNYMYHypernymy relation (A is superordinate of B).- See Also:
-
SYNONYMY
public static final int SYNONYMYSynonymy relation (A denotes the same as B).- See Also:
-
ANTONYMY
public static final int ANTONYMYAntonymy relation (A denotes the opposite of B).- See Also:
-
OTHER
public static final int OTHEROther miscellaneous or custom semantic relation.- See Also:
-
-
Constructor Details
-
SemanticNetwork
public SemanticNetwork()
-