|
23 | 23 | * <p>Relations that a source format draws between individual word senses (antonymy and |
24 | 24 | * derivation, for example) surface here at the synset level: the synset containing the source |
25 | 25 | * sense carries the relation to the synset containing the target sense.</p> |
| 26 | + * |
| 27 | + * <p>The vocabulary includes every typed synset and sense relation in the |
| 28 | + * <a href="https://globalwordnet.github.io/schemas/WN-LMF-1.4.dtd">Global WordNet Association |
| 29 | + * WN-LMF 1.4 format</a>. Format-specific readers document any contextual mapping.</p> |
26 | 30 | */ |
27 | 31 | public enum WordNetRelation { |
28 | 32 |
|
@@ -111,5 +115,239 @@ public enum WordNetRelation { |
111 | 115 | DOMAIN_USAGE, |
112 | 116 |
|
113 | 117 | /** A synset belonging to this usage domain. */ |
114 | | - MEMBER_OF_DOMAIN_USAGE |
| 118 | + MEMBER_OF_DOMAIN_USAGE, |
| 119 | + |
| 120 | + /** An entity that intentionally performs or initiates an event. */ |
| 121 | + AGENT, |
| 122 | + |
| 123 | + /** A state that this concept enters or occupies. */ |
| 124 | + BE_IN_STATE, |
| 125 | + |
| 126 | + /** A semantic class that classifies this concept. */ |
| 127 | + CLASSIFIED_BY, |
| 128 | + |
| 129 | + /** A concept classified by this semantic class. */ |
| 130 | + CLASSIFIES, |
| 131 | + |
| 132 | + /** An instrument that participates with this agent. */ |
| 133 | + CO_AGENT_INSTRUMENT, |
| 134 | + |
| 135 | + /** A patient that participates with this agent. */ |
| 136 | + CO_AGENT_PATIENT, |
| 137 | + |
| 138 | + /** A result that participates with this agent. */ |
| 139 | + CO_AGENT_RESULT, |
| 140 | + |
| 141 | + /** An agent that participates with this instrument. */ |
| 142 | + CO_INSTRUMENT_AGENT, |
| 143 | + |
| 144 | + /** A patient that participates with this instrument. */ |
| 145 | + CO_INSTRUMENT_PATIENT, |
| 146 | + |
| 147 | + /** A result that participates with this instrument. */ |
| 148 | + CO_INSTRUMENT_RESULT, |
| 149 | + |
| 150 | + /** An agent that participates with this patient. */ |
| 151 | + CO_PATIENT_AGENT, |
| 152 | + |
| 153 | + /** An instrument that participates with this patient. */ |
| 154 | + CO_PATIENT_INSTRUMENT, |
| 155 | + |
| 156 | + /** An agent that participates with this result. */ |
| 157 | + CO_RESULT_AGENT, |
| 158 | + |
| 159 | + /** An instrument that participates with this result. */ |
| 160 | + CO_RESULT_INSTRUMENT, |
| 161 | + |
| 162 | + /** A semantic role that participates with this role. */ |
| 163 | + CO_ROLE, |
| 164 | + |
| 165 | + /** A direction associated with an event or entity. */ |
| 166 | + DIRECTION, |
| 167 | + |
| 168 | + /** An equivalent synonym relation from WN-LMF. */ |
| 169 | + EQ_SYNONYM, |
| 170 | + |
| 171 | + /** The location whole that contains this concept. */ |
| 172 | + LOCATION_HOLONYM, |
| 173 | + |
| 174 | + /** The portion whole that contains this concept. */ |
| 175 | + PORTION_HOLONYM, |
| 176 | + |
| 177 | + /** A whole related by an unspecified holonym relation. */ |
| 178 | + HOLONYM, |
| 179 | + |
| 180 | + /** The manner in which this concept occurs. */ |
| 181 | + IN_MANNER, |
| 182 | + |
| 183 | + /** An instrument used in an event. */ |
| 184 | + INSTRUMENT, |
| 185 | + |
| 186 | + /** A location associated with an entity or event. */ |
| 187 | + LOCATION, |
| 188 | + |
| 189 | + /** An event or situation in which this concept is involved. */ |
| 190 | + INVOLVED, |
| 191 | + |
| 192 | + /** The agent involved in an event. */ |
| 193 | + INVOLVED_AGENT, |
| 194 | + |
| 195 | + /** The direction involved in an event. */ |
| 196 | + INVOLVED_DIRECTION, |
| 197 | + |
| 198 | + /** The instrument involved in an event. */ |
| 199 | + INVOLVED_INSTRUMENT, |
| 200 | + |
| 201 | + /** The location involved in an event. */ |
| 202 | + INVOLVED_LOCATION, |
| 203 | + |
| 204 | + /** The patient involved in an event. */ |
| 205 | + INVOLVED_PATIENT, |
| 206 | + |
| 207 | + /** The result involved in an event. */ |
| 208 | + INVOLVED_RESULT, |
| 209 | + |
| 210 | + /** The source direction involved in an event. */ |
| 211 | + INVOLVED_SOURCE_DIRECTION, |
| 212 | + |
| 213 | + /** The target direction involved in an event. */ |
| 214 | + INVOLVED_TARGET_DIRECTION, |
| 215 | + |
| 216 | + /** A synonym relation that is intentionally irregular or non-equivalent. */ |
| 217 | + IR_SYNONYM, |
| 218 | + |
| 219 | + /** An event of which this concept is a subevent. */ |
| 220 | + IS_SUBEVENT_OF, |
| 221 | + |
| 222 | + /** An event for which this concept specifies the manner. */ |
| 223 | + MANNER_OF, |
| 224 | + |
| 225 | + /** A location part contained by this concept. */ |
| 226 | + LOCATION_MERONYM, |
| 227 | + |
| 228 | + /** A portion contained by this concept. */ |
| 229 | + PORTION_MERONYM, |
| 230 | + |
| 231 | + /** A part related by an unspecified meronym relation. */ |
| 232 | + MERONYM, |
| 233 | + |
| 234 | + /** An entity affected by an event. */ |
| 235 | + PATIENT, |
| 236 | + |
| 237 | + /** A concept that restricts this concept. */ |
| 238 | + RESTRICTED_BY, |
| 239 | + |
| 240 | + /** A concept restricted by this concept. */ |
| 241 | + RESTRICTS, |
| 242 | + |
| 243 | + /** A result produced by an event. */ |
| 244 | + RESULT, |
| 245 | + |
| 246 | + /** A semantic role associated with an event. */ |
| 247 | + ROLE, |
| 248 | + |
| 249 | + /** The source direction of an event. */ |
| 250 | + SOURCE_DIRECTION, |
| 251 | + |
| 252 | + /** An event or entity for which this concept is a state. */ |
| 253 | + STATE_OF, |
| 254 | + |
| 255 | + /** An event contained within this event. */ |
| 256 | + SUBEVENT, |
| 257 | + |
| 258 | + /** The target direction of an event. */ |
| 259 | + TARGET_DIRECTION, |
| 260 | + |
| 261 | + /** A feminine form related to this concept. */ |
| 262 | + FEMININE, |
| 263 | + |
| 264 | + /** A concept whose feminine form is this concept. */ |
| 265 | + HAS_FEMININE, |
| 266 | + |
| 267 | + /** A masculine form related to this concept. */ |
| 268 | + MASCULINE, |
| 269 | + |
| 270 | + /** A concept whose masculine form is this concept. */ |
| 271 | + HAS_MASCULINE, |
| 272 | + |
| 273 | + /** A young form related to this concept. */ |
| 274 | + YOUNG, |
| 275 | + |
| 276 | + /** A concept whose young form is this concept. */ |
| 277 | + HAS_YOUNG, |
| 278 | + |
| 279 | + /** A diminutive form related to this concept. */ |
| 280 | + DIMINUTIVE, |
| 281 | + |
| 282 | + /** A concept whose diminutive form is this concept. */ |
| 283 | + HAS_DIMINUTIVE, |
| 284 | + |
| 285 | + /** An augmentative form related to this concept. */ |
| 286 | + AUGMENTATIVE, |
| 287 | + |
| 288 | + /** A concept whose augmentative form is this concept. */ |
| 289 | + HAS_AUGMENTATIVE, |
| 290 | + |
| 291 | + /** A gradable antonym relation. */ |
| 292 | + ANTO_GRADABLE, |
| 293 | + |
| 294 | + /** A simple antonym relation. */ |
| 295 | + ANTO_SIMPLE, |
| 296 | + |
| 297 | + /** A converse antonym relation. */ |
| 298 | + ANTO_CONVERSE, |
| 299 | + |
| 300 | + /** A simple imperfective-to-perfective aspect relation. */ |
| 301 | + SIMPLE_ASPECT_IP, |
| 302 | + |
| 303 | + /** A secondary imperfective-to-perfective aspect relation. */ |
| 304 | + SECONDARY_ASPECT_IP, |
| 305 | + |
| 306 | + /** A simple perfective-to-imperfective aspect relation. */ |
| 307 | + SIMPLE_ASPECT_PI, |
| 308 | + |
| 309 | + /** A secondary perfective-to-imperfective aspect relation. */ |
| 310 | + SECONDARY_ASPECT_PI, |
| 311 | + |
| 312 | + /** A metaphorically related sense. */ |
| 313 | + METAPHOR, |
| 314 | + |
| 315 | + /** A sense for which this sense is a metaphor. */ |
| 316 | + HAS_METAPHOR, |
| 317 | + |
| 318 | + /** A metonymically related sense. */ |
| 319 | + METONYM, |
| 320 | + |
| 321 | + /** A sense for which this sense is a metonym. */ |
| 322 | + HAS_METONYM, |
| 323 | + |
| 324 | + /** The material associated with an entity or event. */ |
| 325 | + MATERIAL, |
| 326 | + |
| 327 | + /** An event associated with a sense. */ |
| 328 | + EVENT, |
| 329 | + |
| 330 | + /** The means by which an event occurs. */ |
| 331 | + BY_MEANS_OF, |
| 332 | + |
| 333 | + /** An entity that undergoes an event. */ |
| 334 | + UNDERGOER, |
| 335 | + |
| 336 | + /** A property expressed by a sense. */ |
| 337 | + PROPERTY, |
| 338 | + |
| 339 | + /** A state expressed by a sense. */ |
| 340 | + STATE, |
| 341 | + |
| 342 | + /** A resource or entity used by an event. */ |
| 343 | + USES, |
| 344 | + |
| 345 | + /** The destination of an event. */ |
| 346 | + DESTINATION, |
| 347 | + |
| 348 | + /** A body part associated with a sense. */ |
| 349 | + BODY_PART, |
| 350 | + |
| 351 | + /** A vehicle associated with a sense. */ |
| 352 | + VEHICLE |
115 | 353 | } |
0 commit comments