Add missing documentation
Change-Id: I7ee4b4fa6f23c0ad93e29d4dc52e8430e5f6373f
diff --git a/man/clearCache-KorAPConnection-method.Rd b/man/clearCache-KorAPConnection-method.Rd
new file mode 100644
index 0000000..cc7666e
--- /dev/null
+++ b/man/clearCache-KorAPConnection-method.Rd
@@ -0,0 +1,27 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/KorAPConnection.R
+\name{clearCache,KorAPConnection-method}
+\alias{clearCache,KorAPConnection-method}
+\alias{clearCache}
+\title{Clear local cache}
+\usage{
+\S4method{clearCache}{KorAPConnection}(kco)
+}
+\arguments{
+\item{kco}{KorAPConnection object}
+}
+\value{
+Invisible NULL (function called for side effects)
+}
+\description{
+Clears the local cache of API responses for the current RKorAPClient version.
+Useful when you want to force fresh data retrieval or free up disk space.
+}
+\examples{
+\dontrun{
+kco <- KorAPConnection()
+clearCache(kco)
+}
+
+}
+\concept{connection-initialization}
diff --git a/man/fetchAll-KorAPQuery-method.Rd b/man/fetchAll-KorAPQuery-method.Rd
index 6750192..195bd93 100644
--- a/man/fetchAll-KorAPQuery-method.Rd
+++ b/man/fetchAll-KorAPQuery-method.Rd
@@ -7,6 +7,16 @@
\usage{
\S4method{fetchAll}{KorAPQuery}(kqo, verbose = kqo@korapConnection@verbose, ...)
}
+\arguments{
+\item{kqo}{object obtained from \code{\link[=corpusQuery]{corpusQuery()}}}
+
+\item{verbose}{print progress information if true}
+
+\item{...}{further arguments passed to \code{\link[=fetchNext]{fetchNext()}}}
+}
+\value{
+The updated \code{kqo} object with all results in \verb{@collectedMatches}
+}
\description{
\strong{\code{fetchAll}} fetches all results of a KorAP query.
}
diff --git a/man/fetchRest-KorAPQuery-method.Rd b/man/fetchRest-KorAPQuery-method.Rd
index 9c4adef..da4b938 100644
--- a/man/fetchRest-KorAPQuery-method.Rd
+++ b/man/fetchRest-KorAPQuery-method.Rd
@@ -7,6 +7,16 @@
\usage{
\S4method{fetchRest}{KorAPQuery}(kqo, verbose = kqo@korapConnection@verbose, ...)
}
+\arguments{
+\item{kqo}{object obtained from \code{\link[=corpusQuery]{corpusQuery()}}}
+
+\item{verbose}{print progress information if true}
+
+\item{...}{further arguments passed to \code{\link[=fetchNext]{fetchNext()}}}
+}
+\value{
+The updated \code{kqo} object with remaining results in \verb{@collectedMatches}
+}
\description{
Fetches the remaining results of a KorAP query.
}