The oxenfurt Reference Manual

This is the oxenfurt Reference Manual, version 1.0.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 17:30:11 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 oxenfurt

A client for the Oxford dictionary API.

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://Shinmera.github.io/oxenfurt/

Source Control

(GIT https://github.com/Shinmera/oxenfurt.git)

Bug Tracker

https://github.com/Shinmera/oxenfurt/issues

License

zlib

Version

1.0.0

Dependency

oxenfurt-dexador (system).

Source

oxenfurt.asd.


2.2 oxenfurt-dexador

Dexador client backend for Oxenfurt.

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://Shinmera.github.io/oxenfurt/

Source Control

(GIT https://github.com/Shinmera/oxenfurt.git)

Bug Tracker

https://github.com/Shinmera/oxenfurt/issues

License

zlib

Version

1.0.0

Dependencies
Source

oxenfurt-dexador.asd.

Child Component

dexador.lisp (file).


2.3 oxenfurt-core

Oxenfurt API definitions, client-less.

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://Shinmera.github.io/oxenfurt/

Source Control

(GIT https://github.com/Shinmera/oxenfurt.git)

Bug Tracker

https://github.com/Shinmera/oxenfurt/issues

License

zlib

Version

1.0.0

Dependencies
  • documentation-utils (system).
  • alexandria (system).
  • babel (system).
  • yason (system).
Source

oxenfurt-core.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 oxenfurt/oxenfurt.asd

Source

oxenfurt.asd.

Parent Component

oxenfurt (system).

ASDF Systems

oxenfurt.


3.1.2 oxenfurt-dexador/oxenfurt-dexador.asd

Source

oxenfurt-dexador.asd.

Parent Component

oxenfurt-dexador (system).

ASDF Systems

oxenfurt-dexador.


3.1.3 oxenfurt-core/oxenfurt-core.asd

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).

ASDF Systems

oxenfurt-core.


3.1.4 oxenfurt-dexador/dexador.lisp

Source

oxenfurt-dexador.asd.

Parent Component

oxenfurt-dexador (system).

Internals

3.1.5 oxenfurt-core/package.lisp

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).

Packages

oxenfurt.


3.1.6 oxenfurt-core/toolkit.lisp

Dependency

package.lisp (file).

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).

Public Interface

describe-tree (method).

Internals

3.1.7 oxenfurt-core/objects.lisp

Dependency

toolkit.lisp (file).

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).

Public Interface
Internals

3.1.8 oxenfurt-core/api.lisp

Dependency

objects.lisp (file).

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).

Public Interface
Internals

3.1.9 oxenfurt-core/documentation.lisp

Dependency

api.lisp (file).

Source

oxenfurt-core.asd.

Parent Component

oxenfurt-core (system).


4 Packages

Packages are listed by definition order.


4.1 oxenfurt

Source

package.lisp.

Nickname

org.shirakumo.oxenfurt

Use List

common-lisp.

Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Special variables

Special Variable: *api*

The base endpoint URL of the Oxford dictionary API.

Package

oxenfurt.

Source

api.lisp.

Special Variable: *app-id*

Your Oxford dictionary API app ID.

See https://developer.oxforddictionaries.com/admin/applications

Package

oxenfurt.

Source

api.lisp.

Special Variable: *app-key*

Your Oxford dictionary API app key.

See https://developer.oxforddictionaries.com/admin/applications

Package

oxenfurt.

Source

api.lisp.


5.1.2 Ordinary functions

Function: find-word (word &key source-lang filters synonyms antonyms target-lang sentences)

Retrieve dictionary information for a given word.

The parameters FILTERS, SYNONYMS/ANTONYMS, TARGET-LANG, and SENTENCES can only be used one at a time. The API does not support, for instance, sentences for translations into a target language.

SYNONYMS, ANTONYMS, and SENTENCES are booleans about whether to return information from the thesaurus or sentence lexicon for the given word.

TARGET-LANG specifies a language for which translations from the given SOURCE-LANG of the word should be returned.

FILTERS can be a plist of filter keys to lists of filter values. See LIST-FILTERS for the possible combinations. One additional, special filter is possible that cannot be combined with other filters: :REGION. Its value should be a list of available regions to which to constrain word results. See LIST-REGIONS for possible region names.

See WORD

Package

oxenfurt.

Source

api.lisp.

Function: inflections (word &key source-lang filters)

Check whether a given word exists in the dictionary and retrieve its root form.

See WORD

Package

oxenfurt.

Source

api.lisp.

Function: list-domains (&key source-lang target-lang)

Returns a list of possible domains for the given language or translation.

Package

oxenfurt.

Source

api.lisp.

Function: list-filters (&optional endpoint)

Returns a list of possible filters, either for each endpoint, or for a particular one.

Package

oxenfurt.

Source

api.lisp.

Function: list-grammatical-features (&key source-lang)

Returns a plist of grammatical features to their possible values for the given language.

Package

oxenfurt.

Source

api.lisp.

Function: list-languages (&key source-lang target-lang)

Returns a list of LANGUAGE-DATASETs that the API supports.

If source-lang is given, only that language is returned.
If source- and target-lang are given, the API only succeeds if a translation from source to target is possible.

See LANGUAGE-DATASET

Package

oxenfurt.

Source

api.lisp.

Function: list-lexical-categories (&key language)

Returns a list of possible lexical categories for the given language or translation.

Package

oxenfurt.

Source

api.lisp.

Function: list-regions (&key source-lang)

Returns a plist of known regions to their alternate names for the given language.

Package

oxenfurt.

Source

api.lisp.

Function: list-registers (&key source-lang target-lang)

Returns a list of possible registers for the given language or translation.

Package

oxenfurt.

Source

api.lisp.

Function: list-words (&key source-lang filters exclude exclude-senses exclude-prime-senses word-length prefix exact offset limit)

List words matching certain criteria.

FILTERS can be a plist of filter keys to lists of filter values. See LIST-FILTERS for the possible combinations.

EXCLUDE is the same as FILTERS, but excludes headwords that contain senses that match the exclude pattern.

EXCLUDE-SENSES is the same as EXCLUDE but excludes matching senses for headwords.

EXCLUDE-PRIME-SENSES is the same as EXCLUDE but only excludes a headword if the primary sense matches the pattern.

WORD-LENGTH can either be an integer or a cons of (LOWER . UPPER) to specify the limits of the word lengths in characters. Both LOWER and UPPER can be NIL if the limit should only go one way.

PREFIX filters to words that start with the given string.
If EXACT is true, only exact matches are returned.

See WORD

Package

oxenfurt.

Source

api.lisp.

Function: ngram-frequency (tokens &key source-lang corpus contains punctuation format frequency document-frequency offset limit)

Returns ngram (multiple word) frequency information.

TOKENS should be either a single list of tokens for one ngram, or a list of lists. Each sub-list must be the same length.

CORPUS should always by NMC. Other corpora will require special support from the Oxford API.

CONTAINS can be a list of tokens. If given, only ngrams which match all of the given tokens. The order of the tokens is irrelevant.

If PUNCTUATION is true, ngrams that include punctuation are also included in the results.

FORMAT denotes whether the tokens are returned as a list or as a single string. For the list, choose :OUP, for a single string, choose :GOOGLE.

FREQUENCY can be a constraint on the allowed frequency. Can be either a single number for an exact match, or a cons for a lower and upper bound. Both bounds can be NIL.

DOCUMENT-FREQUENCY can be a constraint on the required frequency of the ngram within documents. Can be either a single number for an exact match, or a cons for a lower and upper bound. Both bounds can be NIL.

See FREQUENCY

Package

oxenfurt.

Source

api.lisp.

Function: search-words (query &key source-lang prefix regions target-lang offset limit)

Search the dictionary for matching words.

The query is matched using headwords, lemmatization, and fuzzy matching.

If PREFIX is true, only words starting with the query are considered.

REGIONS can be a list of regions that the words must match.

When TARGET-LANG is given, the translation dictionaries are searched instead.

See MATCH

Package

oxenfurt.

Source

api.lisp.

Function: word-frequency (lemma &key source-lang corpus wordform true-case lexical-category grammatical-features sort frequency normalized-frequency offset limit)

Returns word usage frequency information.

The LEMMA can either be a single word, or a list of words. In the latter case, the results are split into the smallest possible units.

CORPUS should always by NMC. Other corpora will require special support from the Oxford API.

WORDFROM can be the written form of the word to look up, preserving the capitalisation.

TRUE-CASE can be the written form of the word to look up with normalised case.

LEXICAL-CATEGORY can be the lexical category to match for the word to look up. See LIST-LEXICAL-CATEGORIES for available categories.

GRAMMATICAL-FEATURES should be a plist of constraints on the grammatical features of the specific word to look up.
See LIST-GRAMMATICAL-FEATURES for possible options.

SORT should be one or more fields to sort by. Each field can either be the name of the field directly, or a cons where the cdr is one of :ASC or :DSC, denoting the sorting order. The available fields are :WORDFORM :TRUE-CASE :LEMMA :LEXICAL-CATEGORY :FREQUENCY :NORMALIZED-FREQUENCY.

FREQUENCY can be a constraint on the allowed frequency. Can be either a single number for an exact match, or a cons for a lower and upper bound. Both bounds can be NIL.

NORMALIZED-FREQUENCY can be a constraint on the allowed normalized frequency. Can be either a single number for an exact match, or a cons for a lower and upper bound. Both bounds can be NIL.

See FREQUENCY

Package

oxenfurt.

Source

api.lisp.


5.1.3 Generic functions

Generic Reader: antonyms (object)

Returns the list of antonyms for the sense.

See SENSE

Package

oxenfurt.

Methods
Reader Method: antonyms ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

antonyms.

Generic Reader: audio-file (object)

Returns the URL of a sound file for the pronunciation.

See PRONUNCIATION

Package

oxenfurt.

Methods
Reader Method: audio-file ((pronunciation pronunciation))

automatically generated reader method

Source

objects.lisp.

Target Slot

audio-file.

Generic Function: bilingual-p (dataset)

Returns whether the language is bilingual (can be translated).

See LANGUAGE-DATASET

Package

oxenfurt.

Methods
Method: bilingual-p ((dataset language-dataset))
Source

objects.lisp.

Generic Reader: body (condition)

Returns the HTTP body as a string.

See API-CALL-FAILED

Package

oxenfurt.

Methods
Reader Method: body ((condition api-call-failed))
Source

api.lisp.

Target Slot

body.

Generic Reader: components (object)

Returns the components of a frequency result.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: components ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

components.

Generic Reader: cross-reference-markers (object)

Returns a grouping of cross reference notes.

See SENSE

Package

oxenfurt.

Methods
Reader Method: cross-reference-markers ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

cross-reference-markers.

Generic Reader: cross-references (object)

Returns a list of cross-references.

See SENSE

Package

oxenfurt.

Methods
Reader Method: cross-references ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

cross-references.

Generic Reader: definitions (object)

Returns a list of definitions for the exact meaning of the object.

See SENSE
See EXAMPLE
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: definitions ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

definitions.

Reader Method: definitions ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

definitions.

Reader Method: definitions ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

definitions.

Generic Reader: derivative-of (object)

Returns a list of other words from which this one derives.

See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: derivative-of ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

derivative-of.

Generic Reader: derivatives (object)

Returns a list of other words which derive from this one.

See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: derivatives ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

derivatives.

Generic Function: describe-tree (object &optional indent)
Package

oxenfurt.

Methods
Method: describe-tree ((object standard-object) &optional indent)
Source

toolkit.lisp.

Generic Reader: dialects (object)

Returns a list of dialects in which this pronunciation is used.

See PRONUNCIATION

Package

oxenfurt.

Methods
Reader Method: dialects ((pronunciation pronunciation))

automatically generated reader method

Source

objects.lisp.

Target Slot

dialects.

Generic Reader: domains (object)

Returns the name of a subject, discipline, or branch of knowledge related to this object.

See ANTONYM
See SYNONYM
See DERIVATIVE
See SENSE
See EXAMPLE
See TRANSLATION
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: domains ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Reader Method: domains ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

domains.

Generic Reader: entries (object)

Returns the list of word entries for this lexical entry.

See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: entries ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

entries.

Generic Reader: etymologies (object)

Returns a list of strings describing the etymology of the word.

See ENTRY

Package

oxenfurt.

Methods
Reader Method: etymologies ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

etymologies.

Generic Reader: examples (object)

Returns a list of example usages of the word.

See SENSE

Package

oxenfurt.

Methods
Reader Method: examples ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

examples.

Generic Reader: first-mention (object)

Returns a date formatted as a string representing the time this word was first observed.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: first-mention ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

first-mention.

Generic Reader: frequency (object)

Returns a number representing the usage frequency of the word or ngram.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: frequency ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

frequency.

Generic Reader: grammatical-features (object)

Returns a plist of applicable grammatical features and their values.

See LEXICAL-ENTRY
See FREQUENCY
See TRANSLATION
See ENTRY

Package

oxenfurt.

Methods
Reader Method: grammatical-features ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

grammatical-features.

Reader Method: grammatical-features ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

grammatical-features.

Reader Method: grammatical-features ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

grammatical-features.

Reader Method: grammatical-features ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

grammatical-features.

Generic Reader: homograph-number (object)

Identifies the homograph grouping.

The last two digits identify different entries of the same homograph. The first one/two digits identify the homograph number.

See ENTRY

Package

oxenfurt.

Methods
Reader Method: homograph-number ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

homograph-number.

Generic Reader: id (object)

The identifier of the word this object is about.

See ANTONYM
See SYNONYM
See NOTE
See DERIVATIVE
See SENSE
See CROSS-REFERENCE
See MATCH
See WORD

Package

oxenfurt.

Methods
Reader Method: id ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((cross-reference cross-reference))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((note note))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((word word))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Generic Reader: inflection-id (object)

The identifier for the specific inflection of the word that was matched.

See MATCH

Package

oxenfurt.

Methods
Reader Method: inflection-id ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

inflection-id.

Generic Reader: inflection-of (object)

Returns a list of word IDs for which this lexical entry is an inflection.

See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: inflection-of ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

inflection-of.

Generic Reader: kind (object)

Returns an identifier for the kind of data this object carries.

See NOTE
See CROSS-REFERENCE

Package

oxenfurt.

Methods
Reader Method: kind ((cross-reference cross-reference))

automatically generated reader method

Source

objects.lisp.

Target Slot

kind.

Reader Method: kind ((note note))

automatically generated reader method

Source

objects.lisp.

Target Slot

kind.

Generic Reader: language (object)

Returns a language identifier for which this object is meant.

See ANTONYM
See SYNONYM
See DERIVATIVE
See TRANSLATION
See LANGUAGE-DATASET
See LEXICAL-ENTRY
See WORD

Package

oxenfurt.

Methods
Reader Method: language ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((word word))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((language-dataset language-dataset))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Generic Reader: lemma (object)

Returns the lemma for which this frequency applies.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: lemma ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

lemma.

Generic Reader: lexical-category (object)

Returns the linguistic category for which this word qualifies.

Generally the category is defined by the syntactic or morphological behaviour of the lexical item in question, such as noun or verb.

See FREQUENCY
See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: lexical-category ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

lexical-category.

Reader Method: lexical-category ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

lexical-category.

Generic Reader: lexical-entries (object)

Returns a list of lexical entries that this word represents.

See WORD

Package

oxenfurt.

Methods
Reader Method: lexical-entries ((word word))

automatically generated reader method

Source

objects.lisp.

Target Slot

lexical-entries.

Generic Reader: match-string (object)

Returns the string that was used to match.

See MATCH

Package

oxenfurt.

Methods
Reader Method: match-string ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

match-string.

Generic Reader: match-type (object)

Returns the kind of match that occurred.

See MATCH

Package

oxenfurt.

Methods
Reader Method: match-type ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

match-type.

Generic Reader: normalized-frequency (object)

Returns the normalized frequency number.

This is the frequency per million based on a corpus.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: normalized-frequency ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

normalized-frequency.

Generic Reader: normalized-lemma (object)

Returns the normalised form of the lemma.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: normalized-lemma ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

normalized-lemma.

Generic Reader: notes (object)

Returns a list of notes about this object.

See LEXICAL-ENTRY
See ENTRY
See SENSE
See EXAMPLE
See TRANSLATION
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: notes ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Reader Method: notes ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Reader Method: notes ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Reader Method: notes ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Reader Method: notes ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Reader Method: notes ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

notes.

Generic Reader: phonetic-notation (object)

Returns an identifier for the phonetic notation used to describe the pronunciation.

See PRONUNCIATION

Package

oxenfurt.

Methods
Reader Method: phonetic-notation ((pronunciation pronunciation))

automatically generated reader method

Source

objects.lisp.

Target Slot

phonetic-notation.

Generic Reader: phonetic-spelling (object)

Returns a string describing how this word should be pronounced in some notation.

See PRONUNCIATION

Package

oxenfurt.

Methods
Reader Method: phonetic-spelling ((pronunciation pronunciation))

automatically generated reader method

Source

objects.lisp.

Target Slot

phonetic-spelling.

Generic Reader: pronunciations (object)

Returns a list of possible pronunciations for this object.

See LEXICAL-ENTRY
See ENTRY
See WORD
See SENSE

Package

oxenfurt.

Methods
Reader Method: pronunciations ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

pronunciations.

Reader Method: pronunciations ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

pronunciations.

Reader Method: pronunciations ((word word))

automatically generated reader method

Source

objects.lisp.

Target Slot

pronunciations.

Reader Method: pronunciations ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

pronunciations.

Generic Reader: region (object)

Returns the name of a region for which this match applies.

See MATCH

Package

oxenfurt.

Methods
Reader Method: region ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

region.

Reader Method: region ((language-dataset language-dataset))

automatically generated reader method

Source

objects.lisp.

Target Slot

region.

Generic Reader: regions (object)

Returns a list of region names to which this object applies.

See ANTONYM
See SYNONYM
See PRONUNCIATION
See DERIVATIVE
See VARIANT-FORM
See SENSE
See EXAMPLE
See TRANSLATION
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: regions ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((variant-form variant-form))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Reader Method: regions ((pronunciation pronunciation))

automatically generated reader method

Source

objects.lisp.

Target Slot

regions.

Generic Reader: registers (object)

Returns a list describing the level of language usage, typically with respect to formality.

See ANTONYM
See SYNONYM
See DERIVATIVE
See SENSE
See EXAMPLE
See TRANSLATION
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: registers ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Reader Method: registers ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

registers.

Generic Reader: result (condition)

Returns the HTTP return code for the failed access.

See API-CALL-FAILED

Package

oxenfurt.

Methods
Reader Method: result ((condition api-call-failed))
Source

api.lisp.

Target Slot

result.

Generic Reader: score (object)

Returns a number representing how highly this match scored in the search.

See MATCH

Package

oxenfurt.

Methods
Reader Method: score ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

score.

Generic Reader: sense-ids (object)

Returns a list of IDs for senses related to this object.

See EXAMPLE
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: sense-ids ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

sense-ids.

Reader Method: sense-ids ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

sense-ids.

Generic Reader: senses (object)

Returns a list of senses for this entry.

See ENTRY

Package

oxenfurt.

Methods
Reader Method: senses ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

senses.

Generic Reader: sentences (object)

Returns a list of example usage sentences for this lexical entry.

See LEXICAL-ENTRY

Package

oxenfurt.

Methods
Reader Method: sentences ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

sentences.

Generic Reader: source (object)

Returns a string description of the source of the dictionary.

See LANGUAGE-DATASET

Package

oxenfurt.

Methods
Reader Method: source ((language-dataset language-dataset))

automatically generated reader method

Source

objects.lisp.

Target Slot

source.

Generic Reader: subsenses (object)

Returns an ordered list of subsenses of a sense.

See SENSE

Package

oxenfurt.

Methods
Reader Method: subsenses ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

subsenses.

Generic Reader: synonyms (object)

Returns a list of synonyms for the sense.

See SENSE

Package

oxenfurt.

Methods
Reader Method: synonyms ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

synonyms.

Generic Reader: target-lang (object)

Returns a descriptor for the target language of a translation dataset.

See LANGUAGE-DATASET

Package

oxenfurt.

Methods
Reader Method: target-lang ((language-dataset language-dataset))

automatically generated reader method

Source

objects.lisp.

Target Slot

target-lang.

Generic Reader: text (object)

Returns a full text representation of the object.

See ANTONYM
See SYNONYM
See LEXICAL-ENTRY
See NOTE
See DERIVATIVE
See VARIANT-FORM
See CROSS-REFERENCE
See EXAMPLE
See TRANSLATION
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: text ((antonym antonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((synonym synonym))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((translation translation))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((cross-reference cross-reference))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((variant-form variant-form))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((derivative derivative))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((note note))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Reader Method: text ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Generic Reader: tokens (object)

Returns the ngram tokens for the frequency result.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: tokens ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

tokens.

Generic Reader: translations (object)

Returns a list of translations for the given object.

See SENSE
See EXAMPLE
See SENTENCE

Package

oxenfurt.

Methods
Reader Method: translations ((sentence sentence))

automatically generated reader method

Source

objects.lisp.

Target Slot

translations.

Reader Method: translations ((example example))

automatically generated reader method

Source

objects.lisp.

Target Slot

translations.

Reader Method: translations ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

translations.

Generic Reader: true-case (object)

Returns a given written realisation of an entry, typically in lower case.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: true-case ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

true-case.

Generic Reader: url (condition)

Returns the URL that the request tried to access.

See API-CALL-FAILED

Package

oxenfurt.

Methods
Reader Method: url ((condition api-call-failed))
Source

api.lisp.

Target Slot

url.

Generic Reader: variant-forms (object)

Returns a list of variant forms for the given object.

See LEXICAL-ENTRY
See ENTRY
See SENSE

Package

oxenfurt.

Methods
Reader Method: variant-forms ((sense sense))

automatically generated reader method

Source

objects.lisp.

Target Slot

variant-forms.

Reader Method: variant-forms ((entry entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

variant-forms.

Reader Method: variant-forms ((lexical-entry lexical-entry))

automatically generated reader method

Source

objects.lisp.

Target Slot

variant-forms.

Generic Reader: word (object)

Returns a given written or spoken realisation of a an entry, lowercased.

See WORD
See MATCH

Package

oxenfurt.

Methods
Reader Method: word ((match match))

automatically generated reader method

Source

objects.lisp.

Target Slot

word.

Reader Method: word ((word word))

automatically generated reader method

Source

objects.lisp.

Target Slot

word.

Generic Reader: wordform (object)

Returns a given written realisation of an entry, preserving case.

See FREQUENCY

Package

oxenfurt.

Methods
Reader Method: wordform ((frequency frequency))

automatically generated reader method

Source

objects.lisp.

Target Slot

wordform.


5.1.4 Standalone methods

Method: print-object ((synonym synonym) stream)
Source

objects.lisp.

Method: print-object ((antonym antonym) stream)
Source

objects.lisp.

Method: print-object ((variant-form variant-form) stream)
Source

objects.lisp.

Method: print-object ((word word) stream)
Source

objects.lisp.

Method: print-object ((lexical-entry lexical-entry) stream)
Source

objects.lisp.

Method: print-object ((note note) stream)
Source

objects.lisp.

Method: print-object ((example example) stream)
Source

objects.lisp.

Method: print-object ((derivative derivative) stream)
Source

objects.lisp.

Method: print-object ((sentence sentence) stream)
Source

objects.lisp.

Method: print-object ((match match) stream)
Source

objects.lisp.

Method: print-object ((sense sense) stream)
Source

objects.lisp.

Method: print-object ((language-dataset language-dataset) stream)
Source

objects.lisp.

Method: print-object ((cross-reference cross-reference) stream)
Source

objects.lisp.

Method: print-object ((pronunciation pronunciation) stream)
Source

objects.lisp.

Method: print-object ((frequency frequency) stream)
Source

objects.lisp.

Method: print-object ((translation translation) stream)
Source

objects.lisp.


5.1.5 Conditions

Condition: api-call-failed

Error signalled whenever an API call fails for whatever reason.

See URL
See RESULT
See BODY
See REQUEST

Package

oxenfurt.

Source

api.lisp.

Direct superclasses

error.

Direct methods
Direct slots
Slot: url
Initargs

:url

Readers

url.

Writers

This slot is read-only.

Slot: result
Initargs

:result

Readers

result.

Writers

This slot is read-only.

Slot: body
Initargs

:body

Readers

body.

Writers

This slot is read-only.


5.1.6 Classes

Class: antonym

Represents an antonym of a sense.

See DOMAINS
See ID
See LANGUAGE
See REGIONS
See REGISTERS
See TEXT

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Class: cross-reference

Represents a cross reference between senses.

The KIND shows how the words are related. Can be either :close-match :related :see-also :variant-spelling :abbreviation :pre :post.

See ID
See TEXT
See KIND

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Slot: kind
Initargs

:kind

Readers

kind.

Writers

This slot is read-only.

Class: derivative

Represents a related entry of a sense.

See DOMAINS
See ID
See LANGUAGE
See REGIONS
See REGISTERS
See TEXT

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Class: entry

A word entry in a lexical entry.

See ETYMOLOGIES
See GRAMMATICAL-FEATURES
See HOMOGRAPH-NUMBER
See NOTES
See PRONUNCIATIONS
See SENSES
See VARIANT-FORMS

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: etymologies
Initargs

:etymologies

Readers

etymologies.

Writers

This slot is read-only.

Slot: grammatical-features
Initargs

:grammatical-features

Readers

grammatical-features.

Writers

This slot is read-only.

Slot: homograph-number
Initargs

:homograph-number

Readers

homograph-number.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: pronunciations
Initargs

:pronunciations

Readers

pronunciations.

Writers

This slot is read-only.

Slot: senses
Initargs

:senses

Readers

senses.

Writers

This slot is read-only.

Slot: variant-forms
Initargs

:variant-forms

Readers

variant-forms.

Writers

This slot is read-only.

Class: example

Represents an example usage of a word.

See DEFINITIONS
See DOMAINS
See NOTES
See REGIONS
See REGISTERS
See SENSE-IDS
See TEXT
See TRANSLATIONS

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: definitions
Initargs

:definitions

Readers

definitions.

Writers

This slot is read-only.

Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: sense-ids
Initargs

:sense-ids

Readers

sense-ids.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Slot: translations
Initargs

:translations

Readers

translations.

Writers

This slot is read-only.

Class: frequency

Container for frequency information of a word or ngram.

In the case of an ngram frequency, only the FREQUENCY and the TOKENS fields are guaranteed to be set.

See FREQUENCY
See NORMALIZED-FREQUENCY
See LEMMA
See NORMALIZED-LEMMA
See TOKENS
See LEXICAL-CATEGORY
See GRAMMATICAL-FEATURES
See COMPONENTS
See FIRST-MENTION
See TRUE-CASE
See WORDFORM

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: frequency
Initargs

:frequency

Readers

frequency.

Writers

This slot is read-only.

Slot: normalized-frequency
Initargs

:normalized-frequency

Readers

normalized-frequency.

Writers

This slot is read-only.

Slot: lemma
Initargs

:lemma

Readers

lemma.

Writers

This slot is read-only.

Slot: normalized-lemma
Initargs

:normalized-lemma

Readers

normalized-lemma.

Writers

This slot is read-only.

Slot: tokens
Initargs

:tokens

Readers

tokens.

Writers

This slot is read-only.

Slot: lexical-category
Initargs

:lexical-category

Readers

lexical-category.

Writers

This slot is read-only.

Slot: grammatical-features
Initargs

:grammatical-features

Readers

grammatical-features.

Writers

This slot is read-only.

Slot: components
Initargs

:components

Readers

components.

Writers

This slot is read-only.

Slot: first-mention
Initargs

:first-mention

Readers

first-mention.

Writers

This slot is read-only.

Slot: true-case
Initargs

:true-case

Readers

true-case.

Writers

This slot is read-only.

Slot: wordform
Initargs

:wordform

Readers

wordform.

Writers

This slot is read-only.

Class: language-dataset

Container for information about a language in the API.

See REGION
See SOURCE
See LANGUAGE
See TARGET-LANG
See BILINGUAL-P

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: region
Initargs

:region

Readers

region.

Writers

This slot is read-only.

Slot: source
Initargs

:source

Readers

source.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: target-lang
Initargs

:target-lang

Readers

target-lang.

Writers

This slot is read-only.

Class: lexical-entry

An entry of lexical information about a word.

This is the primary information container for a word.

See GRAMMATICAL-FEATURES
See INFLECTION-OF
See LANGUAGE
See LEXICAL-CATEGORY
See TEXT
See DERIVATIVE-OF
See DERIVATIVES
See ENTRIES
See NOTES
See PRONUNCIATIONS
See VARIANT-FORMS
See SENTENCES

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: grammatical-features
Initargs

:grammatical-features

Readers

grammatical-features.

Writers

This slot is read-only.

Slot: inflection-of
Initargs

:inflection-of

Readers

inflection-of.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: lexical-category
Initargs

:lexical-category

Readers

lexical-category.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Slot: derivative-of
Initargs

:derivative-of

Readers

derivative-of.

Writers

This slot is read-only.

Slot: derivatives
Initargs

:derivatives

Readers

derivatives.

Writers

This slot is read-only.

Slot: entries
Initargs

:entries

Readers

entries.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: pronunciations
Initargs

:pronunciations

Readers

pronunciations.

Writers

This slot is read-only.

Slot: variant-forms
Initargs

:variant-forms

Readers

variant-forms.

Writers

This slot is read-only.

Slot: sentences
Initargs

:sentences

Readers

sentences.

Writers

This slot is read-only.

Class: match

Represents a match for a word search query.

See ID
See INFLECTION-ID
See MATCH-STRING
See MATCH-TYPE
See REGION
See WORD
See SCORE

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: inflection-id
Initargs

:inflection-id

Readers

inflection-id.

Writers

This slot is read-only.

Slot: match-string
Initargs

:match-string

Readers

match-string.

Writers

This slot is read-only.

Slot: match-type
Initargs

:match-type

Readers

match-type.

Writers

This slot is read-only.

Slot: region
Initargs

:region

Readers

region.

Writers

This slot is read-only.

Slot: word
Initargs

:word

Readers

word.

Writers

This slot is read-only.

Slot: score
Initargs

:score

Readers

score.

Writers

This slot is read-only.

Class: note

A human-readable note about an object.

This usually contains associated, additional information for the human reader. The KIND is a free-form string that describes what this note might contain.

See ID
See TEXT
See KIND

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Slot: kind
Initargs

:kind

Readers

kind.

Writers

This slot is read-only.

Class: pronunciation

Represents information about the pronunciation of a lexical entry.

See AUDIO-FILE
See DIALECTS
See REGIONS
See PHONETIC-NOTATION
See PHONETIC-SPELLING

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: audio-file
Initargs

:audio-file

Readers

audio-file.

Writers

This slot is read-only.

Slot: dialects
Initargs

:dialects

Readers

dialects.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: phonetic-notation
Initargs

:phonetic-notation

Readers

phonetic-notation.

Writers

This slot is read-only.

Slot: phonetic-spelling
Initargs

:phonetic-spelling

Readers

phonetic-spelling.

Writers

This slot is read-only.

Class: sense

Represents information about a specific sense or meaning of a word.

See ANTONYMS
See CROSS-REFERENCE-MARKERS
See CROSS-REFERENCES
See DEFINITIONS
See DOMAINS
See EXAMPLES
See ID
See NOTES
See PRONUNCIATIONS
See REGIONS
See REGISTERS
See SUBSENSES
See SYNONYMS
See TRANSLATIONS
See VARIANT-FORMS

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: cross-reference-markers
Initargs

:cross-reference-markers

Readers

cross-reference-markers.

Writers

This slot is read-only.

Slot: cross-references
Initargs

:cross-references

Readers

cross-references.

Writers

This slot is read-only.

Slot: definitions
Initargs

:definitions

Readers

definitions.

Writers

This slot is read-only.

Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: examples
Initargs

:examples

Readers

examples.

Writers

This slot is read-only.

Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: pronunciations
Initargs

:pronunciations

Readers

pronunciations.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: subsenses
Initargs

:subsenses

Readers

subsenses.

Writers

This slot is read-only.

Slot: translations
Initargs

:translations

Readers

translations.

Writers

This slot is read-only.

Slot: variant-forms
Initargs

:variant-forms

Readers

variant-forms.

Writers

This slot is read-only.

Slot: synonyms
Initargs

:synonyms

Readers

synonyms.

Writers

This slot is read-only.

Slot: antonyms
Initargs

:antonyms

Readers

antonyms.

Writers

This slot is read-only.

Class: sentence

Represents information about an example usage sentence for a word.

See DEFINITIONS
See DOMAINS
See NOTES
See REGIONS
See REGISTERS
See SENSE-IDS
See TEXT
See TRANSLATIONS

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: definitions
Initargs

:definitions

Readers

definitions.

Writers

This slot is read-only.

Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: sense-ids
Initargs

:sense-ids

Readers

sense-ids.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Slot: translations
Initargs

:translations

Readers

translations.

Writers

This slot is read-only.

Class: synonym

Represents a synonym of a sense.

See DOMAINS
See ID
See LANGUAGE
See REGIONS
See REGISTERS
See TEXT

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Class: translation

Represents information about a translation of a word into a different language.

See DOMAINS
See GRAMMATICAL-FEATURES
See LANGUAGE
See NOTES
See REGIONS
See REGISTERS
See TEXT

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: domains
Initargs

:domains

Readers

domains.

Writers

This slot is read-only.

Slot: grammatical-features
Initargs

:grammatical-features

Readers

grammatical-features.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: notes
Initargs

:notes

Readers

notes.

Writers

This slot is read-only.

Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: registers
Initargs

:registers

Readers

registers.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Class: variant-form

Represents information about an alternate form of a word that can be used interchangeably.

See REGIONS
See TEXT

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: regions
Initargs

:regions

Readers

regions.

Writers

This slot is read-only.

Slot: text
Initargs

:text

Readers

text.

Writers

This slot is read-only.

Class: word

Represents a specific word in the dictionary.

See ID
See LANGUAGE
See LEXICAL-ENTRIES
See PRONUNCIATIONS
See WORD

Package

oxenfurt.

Source

objects.lisp.

Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

id.

Writers

This slot is read-only.

Slot: language
Initargs

:language

Readers

language.

Writers

This slot is read-only.

Slot: lexical-entries
Initargs

:lexical-entries

Readers

lexical-entries.

Writers

This slot is read-only.

Slot: pronunciations
Initargs

:pronunciations

Readers

pronunciations.

Writers

This slot is read-only.

Slot: word
Initargs

:word

Readers

word.

Writers

This slot is read-only.


5.2 Internals


5.2.1 Special variables

Special Variable: *keyword-table*
Package

oxenfurt.

Source

toolkit.lisp.


5.2.2 Macros

Macro: define-converter (class &body body)
Package

oxenfurt.

Source

toolkit.lisp.

Macro: define-oxenfurt-class (name superclasses slots &rest options)
Package

oxenfurt.

Source

toolkit.lisp.

Macro: define-unprintable-printer (class format-string &rest format-args)
Package

oxenfurt.

Source

toolkit.lisp.

Macro: with-result-instance (class results &body initargs)
Package

oxenfurt.

Source

toolkit.lisp.


5.2.3 Ordinary functions

Function: %format-param (s a cp at)
Package

oxenfurt.

Source

toolkit.lisp.

Function: %format-special (s a cp at)
Package

oxenfurt.

Source

toolkit.lisp.

Function: %request (url parameters key id)
Package

oxenfurt.

Source

dexador.lisp.

Function: -> (result &rest tree)
Package

oxenfurt.

Source

toolkit.lisp.

Function: bool->string (bool)
Package

oxenfurt.

Source

toolkit.lisp.

Function: class-direct-slots (class)
Package

oxenfurt.

Source

toolkit.lisp.

Function: key->param (key)
Package

oxenfurt.

Source

toolkit.lisp.

Function: key->special (key)
Package

oxenfurt.

Source

toolkit.lisp.

Function: normalize-frequency (frequency)
Package

oxenfurt.

Source

api.lisp.

Function: param->key (param)
Package

oxenfurt.

Source

toolkit.lisp.

Function: parameters->string (params)
Package

oxenfurt.

Source

dexador.lisp.

Function: request (base parts &key key id parameters)
Package

oxenfurt.

Source

api.lisp.

Function: serialize-features (features)
Package

oxenfurt.

Source

api.lisp.

Function: serialize-filters (filters)
Package

oxenfurt.

Source

api.lisp.

Function: serialize-sort (sort)
Package

oxenfurt.

Source

api.lisp.

Function: slot-definition-name (slot)
Package

oxenfurt.

Source

toolkit.lisp.

Function: special->key (special)
Package

oxenfurt.

Source

toolkit.lisp.

Function: url-decode (string &optional external-format)
Package

oxenfurt.

Source

toolkit.lisp.

Function: url-encode (thing &optional external-format)
Package

oxenfurt.

Source

toolkit.lisp.


5.2.4 Generic functions

Generic Function: into (type object)
Package

oxenfurt.

Source

toolkit.lisp.

Methods
Method: into ((type1 (eql oxenfurt:antonym)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:synonym)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:frequency)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:sentence)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:match)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:translation)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:example)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:cross-reference)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:sense)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:variant-form)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:derivative)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:note)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:pronunciation)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:entry)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:word)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql oxenfurt:lexical-entry)) (object0 hash-table))
Source

objects.lisp.

Method: into ((type1 (eql (quote oxenfurt:language-dataset))) (object0 hash-table))
Source

objects.lisp.

Method: into ((class (eql oxenfurt::grammatical-feature)) (object hash-table))
Source

objects.lisp.

Method: into ((class (eql oxenfurt::grammatical-feature)) (list list))
Source

objects.lisp.

Method: into (class (list list))
Source

objects.lisp.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   -  
A   B   C   D   E   F   G   H   I   K   L   M   N   P   R   S   T   U   V   W  
Index Entry  Section

%
%format-param: Private ordinary functions
%format-special: Private ordinary functions
%request: Private ordinary functions

-
->: Private ordinary functions

A
antonyms: Public generic functions
antonyms: Public generic functions
audio-file: Public generic functions
audio-file: Public generic functions

B
bilingual-p: Public generic functions
bilingual-p: Public generic functions
body: Public generic functions
body: Public generic functions
bool->string: Private ordinary functions

C
class-direct-slots: Private ordinary functions
components: Public generic functions
components: Public generic functions
cross-reference-markers: Public generic functions
cross-reference-markers: Public generic functions
cross-references: Public generic functions
cross-references: Public generic functions

D
define-converter: Private macros
define-oxenfurt-class: Private macros
define-unprintable-printer: Private macros
definitions: Public generic functions
definitions: Public generic functions
definitions: Public generic functions
definitions: Public generic functions
derivative-of: Public generic functions
derivative-of: Public generic functions
derivatives: Public generic functions
derivatives: Public generic functions
describe-tree: Public generic functions
describe-tree: Public generic functions
dialects: Public generic functions
dialects: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions
domains: Public generic functions

E
entries: Public generic functions
entries: Public generic functions
etymologies: Public generic functions
etymologies: Public generic functions
examples: Public generic functions
examples: Public generic functions

F
find-word: Public ordinary functions
first-mention: Public generic functions
first-mention: Public generic functions
frequency: Public generic functions
frequency: Public generic functions
Function, %format-param: Private ordinary functions
Function, %format-special: Private ordinary functions
Function, %request: Private ordinary functions
Function, ->: Private ordinary functions
Function, bool->string: Private ordinary functions
Function, class-direct-slots: Private ordinary functions
Function, find-word: Public ordinary functions
Function, inflections: Public ordinary functions
Function, key->param: Private ordinary functions
Function, key->special: Private ordinary functions
Function, list-domains: Public ordinary functions
Function, list-filters: Public ordinary functions
Function, list-grammatical-features: Public ordinary functions
Function, list-languages: Public ordinary functions
Function, list-lexical-categories: Public ordinary functions
Function, list-regions: Public ordinary functions
Function, list-registers: Public ordinary functions
Function, list-words: Public ordinary functions
Function, ngram-frequency: Public ordinary functions
Function, normalize-frequency: Private ordinary functions
Function, param->key: Private ordinary functions
Function, parameters->string: Private ordinary functions
Function, request: Private ordinary functions
Function, search-words: Public ordinary functions
Function, serialize-features: Private ordinary functions
Function, serialize-filters: Private ordinary functions
Function, serialize-sort: Private ordinary functions
Function, slot-definition-name: Private ordinary functions
Function, special->key: Private ordinary functions
Function, url-decode: Private ordinary functions
Function, url-encode: Private ordinary functions
Function, word-frequency: Public ordinary functions

G
Generic Function, antonyms: Public generic functions
Generic Function, audio-file: Public generic functions
Generic Function, bilingual-p: Public generic functions
Generic Function, body: Public generic functions
Generic Function, components: Public generic functions
Generic Function, cross-reference-markers: Public generic functions
Generic Function, cross-references: Public generic functions
Generic Function, definitions: Public generic functions
Generic Function, derivative-of: Public generic functions
Generic Function, derivatives: Public generic functions
Generic Function, describe-tree: Public generic functions
Generic Function, dialects: Public generic functions
Generic Function, domains: Public generic functions
Generic Function, entries: Public generic functions
Generic Function, etymologies: Public generic functions
Generic Function, examples: Public generic functions
Generic Function, first-mention: Public generic functions
Generic Function, frequency: Public generic functions
Generic Function, grammatical-features: Public generic functions
Generic Function, homograph-number: Public generic functions
Generic Function, id: Public generic functions
Generic Function, inflection-id: Public generic functions
Generic Function, inflection-of: Public generic functions
Generic Function, into: Private generic functions
Generic Function, kind: Public generic functions
Generic Function, language: Public generic functions
Generic Function, lemma: Public generic functions
Generic Function, lexical-category: Public generic functions
Generic Function, lexical-entries: Public generic functions
Generic Function, match-string: Public generic functions
Generic Function, match-type: Public generic functions
Generic Function, normalized-frequency: Public generic functions
Generic Function, normalized-lemma: Public generic functions
Generic Function, notes: Public generic functions
Generic Function, phonetic-notation: Public generic functions
Generic Function, phonetic-spelling: Public generic functions
Generic Function, pronunciations: Public generic functions
Generic Function, region: Public generic functions
Generic Function, regions: Public generic functions
Generic Function, registers: Public generic functions
Generic Function, result: Public generic functions
Generic Function, score: Public generic functions
Generic Function, sense-ids: Public generic functions
Generic Function, senses: Public generic functions
Generic Function, sentences: Public generic functions
Generic Function, source: Public generic functions
Generic Function, subsenses: Public generic functions
Generic Function, synonyms: Public generic functions
Generic Function, target-lang: Public generic functions
Generic Function, text: Public generic functions
Generic Function, tokens: Public generic functions
Generic Function, translations: Public generic functions
Generic Function, true-case: Public generic functions
Generic Function, url: Public generic functions
Generic Function, variant-forms: Public generic functions
Generic Function, word: Public generic functions
Generic Function, wordform: Public generic functions
grammatical-features: Public generic functions
grammatical-features: Public generic functions
grammatical-features: Public generic functions
grammatical-features: Public generic functions
grammatical-features: Public generic functions

H
homograph-number: Public generic functions
homograph-number: Public generic functions

I
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
inflection-id: Public generic functions
inflection-id: Public generic functions
inflection-of: Public generic functions
inflection-of: Public generic functions
inflections: Public ordinary functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions
into: Private generic functions

K
key->param: Private ordinary functions
key->special: Private ordinary functions
kind: Public generic functions
kind: Public generic functions
kind: Public generic functions

L
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
lemma: Public generic functions
lemma: Public generic functions
lexical-category: Public generic functions
lexical-category: Public generic functions
lexical-category: Public generic functions
lexical-entries: Public generic functions
lexical-entries: Public generic functions
list-domains: Public ordinary functions
list-filters: Public ordinary functions
list-grammatical-features: Public ordinary functions
list-languages: Public ordinary functions
list-lexical-categories: Public ordinary functions
list-regions: Public ordinary functions
list-registers: Public ordinary functions
list-words: Public ordinary functions

M
Macro, define-converter: Private macros
Macro, define-oxenfurt-class: Private macros
Macro, define-unprintable-printer: Private macros
Macro, with-result-instance: Private macros
match-string: Public generic functions
match-string: Public generic functions
match-type: Public generic functions
match-type: Public generic functions
Method, antonyms: Public generic functions
Method, audio-file: Public generic functions
Method, bilingual-p: Public generic functions
Method, body: Public generic functions
Method, components: Public generic functions
Method, cross-reference-markers: Public generic functions
Method, cross-references: Public generic functions
Method, definitions: Public generic functions
Method, definitions: Public generic functions
Method, definitions: Public generic functions
Method, derivative-of: Public generic functions
Method, derivatives: Public generic functions
Method, describe-tree: Public generic functions
Method, dialects: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, domains: Public generic functions
Method, entries: Public generic functions
Method, etymologies: Public generic functions
Method, examples: Public generic functions
Method, first-mention: Public generic functions
Method, frequency: Public generic functions
Method, grammatical-features: Public generic functions
Method, grammatical-features: Public generic functions
Method, grammatical-features: Public generic functions
Method, grammatical-features: Public generic functions
Method, homograph-number: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, inflection-id: Public generic functions
Method, inflection-of: Public generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, into: Private generic functions
Method, kind: Public generic functions
Method, kind: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, lemma: Public generic functions
Method, lexical-category: Public generic functions
Method, lexical-category: Public generic functions
Method, lexical-entries: Public generic functions
Method, match-string: Public generic functions
Method, match-type: Public generic functions
Method, normalized-frequency: Public generic functions
Method, normalized-lemma: Public generic functions
Method, notes: Public generic functions
Method, notes: Public generic functions
Method, notes: Public generic functions
Method, notes: Public generic functions
Method, notes: Public generic functions
Method, notes: Public generic functions
Method, phonetic-notation: Public generic functions
Method, phonetic-spelling: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, pronunciations: Public generic functions
Method, pronunciations: Public generic functions
Method, pronunciations: Public generic functions
Method, pronunciations: Public generic functions
Method, region: Public generic functions
Method, region: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, regions: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, registers: Public generic functions
Method, result: Public generic functions
Method, score: Public generic functions
Method, sense-ids: Public generic functions
Method, sense-ids: Public generic functions
Method, senses: Public generic functions
Method, sentences: Public generic functions
Method, source: Public generic functions
Method, subsenses: Public generic functions
Method, synonyms: Public generic functions
Method, target-lang: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, text: Public generic functions
Method, tokens: Public generic functions
Method, translations: Public generic functions
Method, translations: Public generic functions
Method, translations: Public generic functions
Method, true-case: Public generic functions
Method, url: Public generic functions
Method, variant-forms: Public generic functions
Method, variant-forms: Public generic functions
Method, variant-forms: Public generic functions
Method, word: Public generic functions
Method, word: Public generic functions
Method, wordform: Public generic functions

N
ngram-frequency: Public ordinary functions
normalize-frequency: Private ordinary functions
normalized-frequency: Public generic functions
normalized-frequency: Public generic functions
normalized-lemma: Public generic functions
normalized-lemma: Public generic functions
notes: Public generic functions
notes: Public generic functions
notes: Public generic functions
notes: Public generic functions
notes: Public generic functions
notes: Public generic functions
notes: Public generic functions

P
param->key: Private ordinary functions
parameters->string: Private ordinary functions
phonetic-notation: Public generic functions
phonetic-notation: Public generic functions
phonetic-spelling: Public generic functions
phonetic-spelling: Public generic functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
pronunciations: Public generic functions
pronunciations: Public generic functions
pronunciations: Public generic functions
pronunciations: Public generic functions
pronunciations: Public generic functions

R
region: Public generic functions
region: Public generic functions
region: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
regions: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
registers: Public generic functions
request: Private ordinary functions
result: Public generic functions
result: Public generic functions

S
score: Public generic functions
score: Public generic functions
search-words: Public ordinary functions
sense-ids: Public generic functions
sense-ids: Public generic functions
sense-ids: Public generic functions
senses: Public generic functions
senses: Public generic functions
sentences: Public generic functions
sentences: Public generic functions
serialize-features: Private ordinary functions
serialize-filters: Private ordinary functions
serialize-sort: Private ordinary functions
slot-definition-name: Private ordinary functions
source: Public generic functions
source: Public generic functions
special->key: Private ordinary functions
subsenses: Public generic functions
subsenses: Public generic functions
synonyms: Public generic functions
synonyms: Public generic functions

T
target-lang: Public generic functions
target-lang: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
text: Public generic functions
tokens: Public generic functions
tokens: Public generic functions
translations: Public generic functions
translations: Public generic functions
translations: Public generic functions
translations: Public generic functions
true-case: Public generic functions
true-case: Public generic functions

U
url: Public generic functions
url: Public generic functions
url-decode: Private ordinary functions
url-encode: Private ordinary functions

V
variant-forms: Public generic functions
variant-forms: Public generic functions
variant-forms: Public generic functions
variant-forms: Public generic functions

W
with-result-instance: Private macros
word: Public generic functions
word: Public generic functions
word: Public generic functions
word-frequency: Public ordinary functions
wordform: Public generic functions
wordform: Public generic functions


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   G   H   I   K   L   M   N   P   R   S   T   U   V   W  
Index Entry  Section

*
*api*: Public special variables
*app-id*: Public special variables
*app-key*: Public special variables
*keyword-table*: Private special variables

A
antonyms: Public classes
audio-file: Public classes

B
body: Public conditions

C
components: Public classes
cross-reference-markers: Public classes
cross-references: Public classes

D
definitions: Public classes
definitions: Public classes
definitions: Public classes
derivative-of: Public classes
derivatives: Public classes
dialects: Public classes
domains: Public classes
domains: Public classes
domains: Public classes
domains: Public classes
domains: Public classes
domains: Public classes
domains: Public classes

E
entries: Public classes
etymologies: Public classes
examples: Public classes

F
first-mention: Public classes
frequency: Public classes

G
grammatical-features: Public classes
grammatical-features: Public classes
grammatical-features: Public classes
grammatical-features: Public classes

H
homograph-number: Public classes

I
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
inflection-id: Public classes
inflection-of: Public classes

K
kind: Public classes
kind: Public classes

L
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
lemma: Public classes
lexical-category: Public classes
lexical-category: Public classes
lexical-entries: Public classes

M
match-string: Public classes
match-type: Public classes

N
normalized-frequency: Public classes
normalized-lemma: Public classes
notes: Public classes
notes: Public classes
notes: Public classes
notes: Public classes
notes: Public classes
notes: Public classes

P
phonetic-notation: Public classes
phonetic-spelling: Public classes
pronunciations: Public classes
pronunciations: Public classes
pronunciations: Public classes
pronunciations: Public classes

R
region: Public classes
region: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
regions: Public classes
registers: Public classes
registers: Public classes
registers: Public classes
registers: Public classes
registers: Public classes
registers: Public classes
registers: Public classes
result: Public conditions

S
score: Public classes
sense-ids: Public classes
sense-ids: Public classes
senses: Public classes
sentences: Public classes
Slot, antonyms: Public classes
Slot, audio-file: Public classes
Slot, body: Public conditions
Slot, components: Public classes
Slot, cross-reference-markers: Public classes
Slot, cross-references: Public classes
Slot, definitions: Public classes
Slot, definitions: Public classes
Slot, definitions: Public classes
Slot, derivative-of: Public classes
Slot, derivatives: Public classes
Slot, dialects: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, domains: Public classes
Slot, entries: Public classes
Slot, etymologies: Public classes
Slot, examples: Public classes
Slot, first-mention: Public classes
Slot, frequency: Public classes
Slot, grammatical-features: Public classes
Slot, grammatical-features: Public classes
Slot, grammatical-features: Public classes
Slot, grammatical-features: Public classes
Slot, homograph-number: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, inflection-id: Public classes
Slot, inflection-of: Public classes
Slot, kind: Public classes
Slot, kind: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, lemma: Public classes
Slot, lexical-category: Public classes
Slot, lexical-category: Public classes
Slot, lexical-entries: Public classes
Slot, match-string: Public classes
Slot, match-type: Public classes
Slot, normalized-frequency: Public classes
Slot, normalized-lemma: Public classes
Slot, notes: Public classes
Slot, notes: Public classes
Slot, notes: Public classes
Slot, notes: Public classes
Slot, notes: Public classes
Slot, notes: Public classes
Slot, phonetic-notation: Public classes
Slot, phonetic-spelling: Public classes
Slot, pronunciations: Public classes
Slot, pronunciations: Public classes
Slot, pronunciations: Public classes
Slot, pronunciations: Public classes
Slot, region: Public classes
Slot, region: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, regions: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, registers: Public classes
Slot, result: Public conditions
Slot, score: Public classes
Slot, sense-ids: Public classes
Slot, sense-ids: Public classes
Slot, senses: Public classes
Slot, sentences: Public classes
Slot, source: Public classes
Slot, subsenses: Public classes
Slot, synonyms: Public classes
Slot, target-lang: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, text: Public classes
Slot, tokens: Public classes
Slot, translations: Public classes
Slot, translations: Public classes
Slot, translations: Public classes
Slot, true-case: Public classes
Slot, url: Public conditions
Slot, variant-forms: Public classes
Slot, variant-forms: Public classes
Slot, variant-forms: Public classes
Slot, word: Public classes
Slot, word: Public classes
Slot, wordform: Public classes
source: Public classes
Special Variable, *api*: Public special variables
Special Variable, *app-id*: Public special variables
Special Variable, *app-key*: Public special variables
Special Variable, *keyword-table*: Private special variables
subsenses: Public classes
synonyms: Public classes

T
target-lang: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
text: Public classes
tokens: Public classes
translations: Public classes
translations: Public classes
translations: Public classes
true-case: Public classes

U
url: Public conditions

V
variant-forms: Public classes
variant-forms: Public classes
variant-forms: Public classes

W
word: Public classes
word: Public classes
wordform: Public classes


A.4 Data types

Jump to:   A   C   D   E   F   L   M   N   O   P   S   T   V   W  
Index Entry  Section

A
antonym: Public classes
api-call-failed: Public conditions
api.lisp: The oxenfurt-core/api․lisp file

C
Class, antonym: Public classes
Class, cross-reference: Public classes
Class, derivative: Public classes
Class, entry: Public classes
Class, example: Public classes
Class, frequency: Public classes
Class, language-dataset: Public classes
Class, lexical-entry: Public classes
Class, match: Public classes
Class, note: Public classes
Class, pronunciation: Public classes
Class, sense: Public classes
Class, sentence: Public classes
Class, synonym: Public classes
Class, translation: Public classes
Class, variant-form: Public classes
Class, word: Public classes
Condition, api-call-failed: Public conditions
cross-reference: Public classes

D
derivative: Public classes
dexador.lisp: The oxenfurt-dexador/dexador․lisp file
documentation.lisp: The oxenfurt-core/documentation․lisp file

E
entry: Public classes
example: Public classes

F
File, api.lisp: The oxenfurt-core/api․lisp file
File, dexador.lisp: The oxenfurt-dexador/dexador․lisp file
File, documentation.lisp: The oxenfurt-core/documentation․lisp file
File, objects.lisp: The oxenfurt-core/objects․lisp file
File, oxenfurt-core.asd: The oxenfurt-core/oxenfurt-core․asd file
File, oxenfurt-dexador.asd: The oxenfurt-dexador/oxenfurt-dexador․asd file
File, oxenfurt.asd: The oxenfurt/oxenfurt․asd file
File, package.lisp: The oxenfurt-core/package․lisp file
File, toolkit.lisp: The oxenfurt-core/toolkit․lisp file
frequency: Public classes

L
language-dataset: Public classes
lexical-entry: Public classes

M
match: Public classes

N
note: Public classes

O
objects.lisp: The oxenfurt-core/objects․lisp file
oxenfurt: The oxenfurt system
oxenfurt: The oxenfurt package
oxenfurt-core: The oxenfurt-core system
oxenfurt-core.asd: The oxenfurt-core/oxenfurt-core․asd file
oxenfurt-dexador: The oxenfurt-dexador system
oxenfurt-dexador.asd: The oxenfurt-dexador/oxenfurt-dexador․asd file
oxenfurt.asd: The oxenfurt/oxenfurt․asd file

P
Package, oxenfurt: The oxenfurt package
package.lisp: The oxenfurt-core/package․lisp file
pronunciation: Public classes

S
sense: Public classes
sentence: Public classes
synonym: Public classes
System, oxenfurt: The oxenfurt system
System, oxenfurt-core: The oxenfurt-core system
System, oxenfurt-dexador: The oxenfurt-dexador system

T
toolkit.lisp: The oxenfurt-core/toolkit․lisp file
translation: Public classes

V
variant-form: Public classes

W
word: Public classes