Compare commits
77 Commits
V1.0.0-bet
...
v2.0.3
Author | SHA1 | Date | |
---|---|---|---|
d1b951b4b1 | |||
71ddc62366 | |||
9bc9ff8085 | |||
c2ea986d3a | |||
d54b8a730f | |||
a2be2c9e93 | |||
cc38391e7c | |||
fbf05b6dcd | |||
ed14c2d01a | |||
c95c525ffb | |||
0ace1efadc | |||
c8595543f9 | |||
94b6a5cea3 | |||
d97717f8f8 | |||
3c585c06a3 | |||
7bfd168d74 | |||
19298f4deb | |||
54bdf107e2 | |||
721302d651 | |||
3ffda43a52 | |||
ae2a1b578a | |||
147c7e7fb0 | |||
906b329c2e | |||
1bf81cfd82 | |||
c9f173d6b0 | |||
c43fafae1b | |||
3b2fa72d26 | |||
91d4ec10b7 | |||
aa1b898b22 | |||
aa21c1219b | |||
bc380077fb | |||
fc9929e9cc | |||
a26ad72b67 | |||
38a70e4979 | |||
4a1425b73b | |||
01c118373e | |||
7535d67661 | |||
eb369dcdc8 | |||
da104d0a63 | |||
c6ed261fe4 | |||
012db5ad26 | |||
f02f7ad211 | |||
c29567114d | |||
d66880f9b2 | |||
5e070e1875 | |||
dd780ad29d | |||
d2165d23bf | |||
d9d0f129b5 | |||
c8d56e62a2 | |||
67bd6ad36f | |||
1a924058a1 | |||
8f81b4d795 | |||
9edd3a53ce | |||
91a6164663 | |||
5a7e052ac4 | |||
6ba3617e32 | |||
c32c91829b | |||
b021935b10 | |||
3d99bf35fd | |||
c5f8ace5d2 | |||
b0149c293e | |||
925172cf86 | |||
aa3290243b | |||
2e7dad444b | |||
6e56bf7425 | |||
dfc1593022 | |||
5fe98a04e8 | |||
59c0c3aabf | |||
c885ff1cfb | |||
8c206b7ad6 | |||
2bccb1745a | |||
b66c757c51 | |||
1e76a2382d | |||
798ff553b5 | |||
5b71adc323 | |||
5a038697bc | |||
5b99564a75 |
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Desktop (please complete the following information):**
|
||||||
|
- OS: [e.g. iOS]
|
||||||
|
- Browser [e.g. chrome, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Smartphone (please complete the following information):**
|
||||||
|
- Device: [e.g. iPhone6]
|
||||||
|
- OS: [e.g. iOS8.1]
|
||||||
|
- Browser [e.g. stock browser, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
|
**Describe alternatives you've considered**
|
||||||
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context or screenshots about the feature request here.
|
32
.github/workflows/pr_checks.yml
vendored
@ -5,35 +5,27 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up JDK 11
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '11'
|
java-version: '17'
|
||||||
- name: Cache Gradle packages
|
- name: Lint
|
||||||
uses: actions/cache@v2
|
uses: burrunan/gradle-cache-action@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/caches
|
gradle-version: wrapper
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
arguments: detekt
|
||||||
restore-keys: ${{ runner.os }}-gradle
|
|
||||||
- name: Lint using detekt
|
|
||||||
run: ./gradlew detekt
|
|
||||||
unit:
|
unit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up JDK 11
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '11'
|
java-version: '17'
|
||||||
- name: Cache Gradle packages
|
- name: Unit Tests
|
||||||
uses: actions/cache@v2
|
uses: burrunan/gradle-cache-action@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/caches
|
gradle-version: wrapper
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
arguments: test koverCollectReports
|
||||||
restore-keys: ${{ runner.os }}-gradle
|
|
||||||
- name: Assemble with Gradle
|
|
||||||
run: ./gradlew assemble
|
|
||||||
- name: Run Unit Tests
|
|
||||||
run: ./gradlew test
|
|
||||||
|
18
.github/workflows/publish.yml
vendored
@ -2,6 +2,11 @@ name: Publish to GitHub Packages
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
paths-ignore:
|
||||||
|
- docs/**
|
||||||
|
env:
|
||||||
|
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SONATYPE_SIGNING_KEY }}
|
||||||
|
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SONATYPE_SIGNING_PASSWORD }}
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -10,14 +15,11 @@ jobs:
|
|||||||
- uses: actions/setup-java@v2
|
- uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '11'
|
java-version: '17'
|
||||||
- name: Cache Gradle packages
|
- name: Publish to GitHub Packages
|
||||||
uses: actions/cache@v2
|
uses: burrunan/gradle-cache-action@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/caches
|
gradle-version: wrapper
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
arguments: publishAllPublicationsToGithubPackagesRepository
|
||||||
restore-keys: ${{ runner.os }}-gradle
|
|
||||||
- name: Publish package
|
|
||||||
run: ./gradlew publish
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
50
.github/workflows/release.yml
vendored
@ -1,25 +1,53 @@
|
|||||||
name: Publish to GitHub Packages
|
name: Publish Release
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types:
|
types:
|
||||||
- prereleased
|
- prereleased
|
||||||
- released
|
- released
|
||||||
|
env:
|
||||||
|
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SONATYPE_SIGNING_KEY }}
|
||||||
|
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SONATYPE_SIGNING_PASSWORD }}
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish-to-nexus:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-java@v2
|
- uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '11'
|
java-version: '17'
|
||||||
- name: Cache Gradle packages
|
- name: Publlish to Maven Central
|
||||||
uses: actions/cache@v2
|
uses: burrunan/gradle-cache-action@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/caches
|
gradle-version: wrapper
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository
|
||||||
restore-keys: ${{ runner.os }}-gradle
|
properties: |
|
||||||
- name: Publish package
|
release=true
|
||||||
run: ./gradlew publish -Prelease=true
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USER }}
|
||||||
|
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
|
||||||
|
build-documentation:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- publish-to-nexus
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||||
|
- uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
distribution: 'adopt'
|
||||||
|
java-version: '17'
|
||||||
|
- name: Build New Documentation
|
||||||
|
uses: burrunan/gradle-cache-action@v1
|
||||||
|
with:
|
||||||
|
gradle-version: wrapper
|
||||||
|
arguments: dokkaHtmlMultiModule
|
||||||
|
properties: |
|
||||||
|
release=true
|
||||||
|
- name: Push New Documentation
|
||||||
|
uses: EndBug/add-and-commit@v8
|
||||||
|
with:
|
||||||
|
default_author: github_actions
|
||||||
|
new_branch: main
|
||||||
|
message: 'doc: Added Latest Documentation ✨'
|
||||||
|
4
.gitignore
vendored
@ -1,7 +1,3 @@
|
|||||||
# Ignore Gradle project-specific cache directory
|
|
||||||
.gradle
|
.gradle
|
||||||
|
|
||||||
# Ignore Gradle build output directory
|
|
||||||
build
|
build
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
kotlin 1.5.0-M2
|
|
||||||
java openjdk-14.0.1
|
|
||||||
gradle 7.0
|
|
225
CHANGELOG.md
@ -1,5 +1,220 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Remove
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Released
|
||||||
|
|
||||||
|
## [2.0.3] - February 7th, 2022
|
||||||
|
### Changed
|
||||||
|
- Fixed swagger documentation bug
|
||||||
|
- Deprecated Swagger Webjar approach
|
||||||
|
|
||||||
|
## [2.0.2] - February 4th, 2022
|
||||||
|
### Added
|
||||||
|
- `@Referenced` annotation enabling support for recursive models
|
||||||
|
|
||||||
|
## [2.0.1] - January 23rd, 2022
|
||||||
|
|
||||||
|
### Change
|
||||||
|
- Fix bug in documentation publishing pipeline
|
||||||
|
|
||||||
|
## [2.0.0] - January 23rd, 2022
|
||||||
|
|
||||||
|
Major Release 🎉 As we head towards the Ktor 2 release, this library will be kept compatible with Ktor 1. A future
|
||||||
|
Kompendium 2 repository will be created soon, porting much of the changes you see here, with some awesome Ktor 2 twists
|
||||||
|
😉
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for HTTP Patch, Head, and Options methods
|
||||||
|
- Support for including parameter examples via `MethodInfo`
|
||||||
|
- Dokka Pipeline Generation
|
||||||
|
- GitHub Pages integration
|
||||||
|
- Sourdough Gradle updates
|
||||||
|
- Support for OAuth authentication
|
||||||
|
- Gradle Toolchain feature to ensure match between local JDK and compile target
|
||||||
|
- Dokka integration
|
||||||
|
- Post-processing callback hook
|
||||||
|
- `description` key to KompendiumField
|
||||||
|
- Set of base constraints for simple and formatted types
|
||||||
|
- Ability to document expected unstructured data
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Kompendium now leverages the chosen API serializer. Supports Jackson, Gson and Kotlinx Serialization
|
||||||
|
- Fixed bug where overridden field names were not reflected in serialized object and required array
|
||||||
|
- Fixed bug where Ktor Location parents were not being scanned for parameters
|
||||||
|
- `$ref` types are no longer generated, instead all objects are defined explicitly
|
||||||
|
- All OpenAPI domain models moved to a separate module `kompendium-oas`
|
||||||
|
- Moved all files in `kompendium-core` into `io.bkbn.kompendium.core` package from `io.bkbn.kompendium`
|
||||||
|
- Gradle bumped to 7.3.2
|
||||||
|
- Gradle build logic offloaded to Sourdough Plugin
|
||||||
|
- Minimum supported Java version is now 11
|
||||||
|
- Bumped Kotlin to 1.6
|
||||||
|
- Annotations now live in a separate module. (Should not impact end users as module is imported as api dependency by
|
||||||
|
core).
|
||||||
|
- Kotest as the testing framework of choice
|
||||||
|
- Path calculation removed in favor of built-in route toString
|
||||||
|
- Ktor to 1.6.7
|
||||||
|
- Completely reworked authentication and exceptions
|
||||||
|
- MethodInfo now exists in a separate package as a sealed interface, each implementation also has its own file
|
||||||
|
- Kompendium is now a Ktor Plugin!
|
||||||
|
- GitHub Actions now leverage Gradle Wrapper
|
||||||
|
- Dropped Codacy support b/c codacy kinda sucks
|
||||||
|
- Fixed bug where KompendiumField was being completely ignored
|
||||||
|
- Redid playground to serve as a showcase for various functionality
|
||||||
|
- README updates
|
||||||
|
- Refactored `handleComplexType` 🎉
|
||||||
|
- Enabled field descriptions
|
||||||
|
- Dropped Version Catalog
|
||||||
|
- Responses are now a map of _actual_ responses rather than generic payloads
|
||||||
|
- Fixed bug where params with default values were listed as required
|
||||||
|
- Made empty put/post request info opt-in rather than default
|
||||||
|
- Fields are now marked as required when there is no default, and they are non-nullable
|
||||||
|
- `KompendiumField` and 'KompendiumParam' renamed to `Field` and `Param` respectively
|
||||||
|
- Description dropped from `Param`
|
||||||
|
- Dropped unnecessary parameter content scanning method
|
||||||
|
- Fixed bug causing all request bodies to be marked as optional
|
||||||
|
- Dropped ASDF tool manifest
|
||||||
|
|
||||||
|
## [1.11.1] - November 25th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Documentation showing how to add header names using Kotlin backtick convention
|
||||||
|
|
||||||
|
## [1.11.0] - November 25th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for Ktor Location Plugin
|
||||||
|
|
||||||
|
## [1.10.0] - November 25th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Added `operationId` parameter to `MethodInfo`
|
||||||
|
|
||||||
|
## [1.9.2] - October 24th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Jackson ObjectMapper passed by parameter to openapi module
|
||||||
|
- Added serializable annotation to ExceptionResponse
|
||||||
|
|
||||||
|
## [1.9.1] - October 17th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Code Coverage removed from PR checks due to limitations with GitHub workflows
|
||||||
|
- Minor linting fixes
|
||||||
|
- Detekt now builds off of default config
|
||||||
|
|
||||||
|
## [1.9.0] - october 15th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- ByteArray added to the set of default types
|
||||||
|
|
||||||
|
## [1.8.1] - October 4th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Codacy integration
|
||||||
|
|
||||||
|
## [1.8.0] - October 4th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Path calculation revamped to allow for simpler selector injection
|
||||||
|
- Kotlin version bumped to 1.5.31
|
||||||
|
- Ktor version bumped to 1.6.4
|
||||||
|
|
||||||
|
## [1.7.0] - August 14th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added ability to inject an emergency `UndeclaredField` in the event of certain polymorphic serializers and such
|
||||||
|
|
||||||
|
## [1.6.0] - August 12th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Ability to add custom type schema overrides for edge case types.
|
||||||
|
|
||||||
|
## [1.5.1] - August 12th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Fixed bug where polymorphic types were not being rendered correctly when part of collections and maps
|
||||||
|
|
||||||
|
## [1.5.0] - July 25th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Added support for BigInteger and BigDecimal in response types
|
||||||
|
|
||||||
|
## [1.4.0] - July 22nd, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Decreased jvmTarget version from 11 to 1.8
|
||||||
|
|
||||||
|
## [1.3.0] - June 4th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Explicitly encode JSON object by default
|
||||||
|
|
||||||
|
## [1.2.3] - June 3rd, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Updates showing/explaining serializer agnostic approach
|
||||||
|
|
||||||
|
## [1.2.2] - May 23rd, 2021
|
||||||
|
|
||||||
|
This is just to get my repo back to normal now that I have confirmed sonatype publish is happening
|
||||||
|
|
||||||
|
## [1.2.0] - May 23rd, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Finally, successfully pushed to Maven Central!!!
|
||||||
|
|
||||||
|
## [1.1.0] - May 19th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for sealed classes 🔥
|
||||||
|
- Support for generic classes ☄️
|
||||||
|
|
||||||
|
## [1.0.1] - May 10th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- a word to sweep my rude commit message to Nexus under the rug
|
||||||
|
|
||||||
|
## [1.0.0] - May 9th, 2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- SonaType integration to publish to MavenCentral
|
||||||
|
|
||||||
|
### [1.0.0-rc] - May 8th, 2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Migrated to io.bkbn group and package name
|
||||||
|
|
||||||
### [1.0.0-beta] - May 6th, 2021
|
### [1.0.0-beta] - May 6th, 2021
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -28,7 +243,7 @@
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Support for example request and response bodies. Parameter examples / defaults are a separate issue for later.
|
- Support for example request and response bodies. Parameter examples / defaults are a separate issue for later.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
@ -77,7 +292,8 @@
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added an explicit `PathCalculator` interface to allow for easier handling of routes external to the core set of Ktor route selectors.
|
- Added an explicit `PathCalculator` interface to allow for easier handling of routes external to the core set of Ktor
|
||||||
|
route selectors.
|
||||||
|
|
||||||
## [0.5.1] - April 19th, 2021
|
## [0.5.1] - April 19th, 2021
|
||||||
|
|
||||||
@ -168,12 +384,13 @@
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Beginning of an implementation. Currently, able to generate a rough outline of the API at runtime, along with generating
|
- Beginning of an implementation. Currently, able to generate a rough outline of the API at runtime, along with
|
||||||
full data classes represented by JSON Schema.
|
generating full data classes represented by JSON Schema.
|
||||||
|
|
||||||
## [0.0.1] - April 11th, 2021
|
## [0.0.1] - April 11th, 2021
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added _most_ of the data classes necessary for generating an [Open API Spec](https://swagger.io/specification)
|
- Added _most_ of the data classes necessary for generating an [Open API Spec](https://swagger.io/specification)
|
||||||
- Added playground to allow users to tinker with a live Ktor api in conjunction with development
|
- Added playground to allow users to tinker with a live Ktor api in conjunction with development
|
||||||
- Added all standard OSS files
|
- Added all standard OSS files
|
||||||
|
41
Project.md
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Kompendium
|
||||||
|
|
||||||
|
Welcome to Kompendium, the straight-forward, minimally-invasive OpenAPI generator for Ktor.
|
||||||
|
|
||||||
|
## How to install
|
||||||
|
|
||||||
|
Kompendium publishes all releases to Maven Central. As such, using the release versions of `Kompendium` is as simple as
|
||||||
|
declaring it as an implementation dependency in your `build.gradle.kts`
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation("io.bkbn:kompendium-core:latest.release")
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
In addition to publishing releases to Maven Central, a snapshot version gets published to GitHub Packages on every merge
|
||||||
|
to `main`. These can be consumed by adding the repository to your gradle build file. Instructions can be
|
||||||
|
found [here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package)
|
||||||
|
|
||||||
|
## Setting up the Kompendium Plugin
|
||||||
|
|
||||||
|
Kompendium is instantiated as a Ktor Feature/Plugin. It can be added to your API as follows
|
||||||
|
|
||||||
|
```kotlin
|
||||||
|
private fun Application.mainModule() {
|
||||||
|
// Installs the Kompendium Plugin and sets up baseline server metadata
|
||||||
|
install(Kompendium) {
|
||||||
|
spec = OpenApiSpec(/*..*/)
|
||||||
|
}
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Notarization
|
||||||
|
|
||||||
|
The concept of notarizing routes / exceptions / etc. is central to Kompendium. More details on _how_ to notarize your
|
||||||
|
API can be found in the kompendium-core module.
|
219
README.md
@ -1,210 +1,53 @@
|
|||||||
# Kompendium
|
# Kompendium
|
||||||
|
|
||||||
|
[](https://search.maven.org/search?q=io.bkbn%20kompendium)
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
|
||||||
|
- [What Is Kompendium](#what-is-kompendium)
|
||||||
|
- [How to Install](#how-to-install)
|
||||||
|
- [Library Details](#library-details)
|
||||||
|
- [Local Development](#local-development)
|
||||||
|
- [The Playground](#the-playground)
|
||||||
|
|
||||||
## What is Kompendium
|
## What is Kompendium
|
||||||
|
|
||||||
Kompendium is intended to be a minimally invasive OpenApi Specification generator for [Ktor](https://ktor.io).
|
Kompendium is intended to be a minimally invasive OpenApi Specification generator for Ktor. Minimally invasive meaning
|
||||||
Minimally invasive meaning that users will use only Ktor native functions when implementing their API, and will
|
that users will use only Ktor native functions when implementing their API, and will supplement with Kompendium code in
|
||||||
supplement with Kompendium code in order to generate the appropriate spec.
|
order to generate the appropriate spec.
|
||||||
|
|
||||||
## How to install
|
## How to install
|
||||||
|
|
||||||
Kompendium uses GitHub packages as its repository. Installing with Gradle is pretty painless. In your `build.gradle.kts`
|
Kompendium publishes all releases to Maven Central. As such, using the release versions of `Kompendium` is as simple as
|
||||||
add the following
|
declaring it as an implementation dependency in your `build.gradle.kts`
|
||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
// 1 Setup a helper function to import any Github Repository Package
|
|
||||||
// This step is optional but I have a bunch of stuff stored on github so I find it useful 😄
|
|
||||||
fun RepositoryHandler.github(packageUrl: String) = maven {
|
|
||||||
name = "GithubPackages"
|
|
||||||
url = uri(packageUrl)
|
|
||||||
credentials { // TODO Not sure this is necessary for public repositories?
|
|
||||||
username = java.lang.System.getenv("GITHUB_USER")
|
|
||||||
password = java.lang.System.getenv("GITHUB_TOKEN")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 2 Add the repo in question (in this case Kompendium)
|
|
||||||
repositories {
|
repositories {
|
||||||
github("https://maven.pkg.github.com/lg-backbone/kompendium")
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 3 Add the package like any normal dependency
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.leafygreens:kompendium-core:0.1.0-SNAPSHOT")
|
implementation("io.bkbn:kompendium-core:latest.release")
|
||||||
}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## In depth
|
|
||||||
|
|
||||||
### Notarized Routes
|
|
||||||
|
|
||||||
Kompendium introduces the concept of `notarized` HTTP methods. That is, for all your `GET`, `POST`, `PUT`, and `DELETE`
|
|
||||||
operations, there is a corresponding `notarized` method. These operations are strongly typed, and use reification for
|
|
||||||
a lot of the class based reflection that powers Kompendium. Generally speaking the three types that a `notarized` method
|
|
||||||
will consume are
|
|
||||||
|
|
||||||
- `TParam`: Used to notarize expected request parameters
|
|
||||||
- `TReq`: Used to build the object schema for a request body
|
|
||||||
- `TResp`: Used to build the object schema for a response body
|
|
||||||
|
|
||||||
`GET` and `DELETE` take `TParam` and `TResp` while `PUT` and `POST` take all three.
|
|
||||||
|
|
||||||
|
|
||||||
In addition to standard HTTP Methods, Kompendium also introduced the concept of `notarizedExceptions`. Using the `StatusPage`
|
|
||||||
extension, users can notarize all handled exceptions, along with their respective HTTP codes and response types.
|
|
||||||
Exceptions that have been `notarized` require two types as supplemental information
|
|
||||||
|
|
||||||
- `TErr`: Used to notarize the exception being handled by this use case. Used for matching responses at the route level.
|
|
||||||
- `TResp`: Same as above, this dictates the expected return type of the error response.
|
|
||||||
|
|
||||||
In keeping with minimal invasion, these extension methods all consume the same code block as a standard Ktor route method,
|
|
||||||
meaning that swapping in a default Ktor route and a Kompendium `notarized` route is as simple as a single method change.
|
|
||||||
|
|
||||||
### Supplemental Annotations
|
|
||||||
|
|
||||||
In general, Kompendium tries to limit the number of annotations that developers need to use in order to get an app
|
|
||||||
integrated.
|
|
||||||
|
|
||||||
Currently, the annotations used by Kompendium are as follows
|
|
||||||
|
|
||||||
- `KompendiumField`
|
|
||||||
- `KompendiumParam`
|
|
||||||
|
|
||||||
The intended purpose of `KompendiumField` is to offer field level overrides such as naming conventions (ie snake instead of camel).
|
|
||||||
|
|
||||||
The purpose of `KompendiumParam` is to provide supplemental information needed to properly assign the type of parameter
|
|
||||||
(cookie, header, query, path) as well as other parameter-level metadata.
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
The full source code can be found in the `kompendium-playground` module. Here is a simple get endpoint example
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
// Minimal API Example
|
|
||||||
fun Application.mainModule() {
|
|
||||||
install(StatusPages) {
|
|
||||||
notarizedException<Exception, ExceptionResponse>(
|
|
||||||
info = ResponseInfo(
|
|
||||||
KompendiumHttpCodes.BAD_REQUEST,
|
|
||||||
"Bad Things Happened"
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
call.respond(HttpStatusCode.BadRequest, ExceptionResponse("Why you do dis?"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
routing {
|
|
||||||
openApi(oas)
|
|
||||||
redoc(oas)
|
|
||||||
swaggerUI()
|
|
||||||
route("/potato/spud") {
|
|
||||||
notarizedGet(simpleGetInfo) {
|
|
||||||
call.respond(HttpStatusCode.OK)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val simpleGetInfo = GetInfo<Unit, ExampleResponse>(
|
|
||||||
summary = "Example Parameters",
|
|
||||||
description = "A test for setting parameter examples",
|
|
||||||
responseInfo = ResponseInfo(
|
|
||||||
status = 200,
|
|
||||||
description = "nice",
|
|
||||||
examples = mapOf("test" to ExampleResponse(c = "spud"))
|
|
||||||
),
|
|
||||||
canThrow = setOf(Exception::class)
|
|
||||||
)
|
|
||||||
```
|
|
||||||
|
|
||||||
### Kompendium Auth and security schemes
|
|
||||||
|
|
||||||
There is a separate library to handle security schemes: `kompendium-auth`.
|
|
||||||
This needs to be added to your project as dependency.
|
|
||||||
|
|
||||||
At the moment, the basic and jwt authentication is only supported.
|
|
||||||
|
|
||||||
A minimal example would be:
|
|
||||||
```kotlin
|
|
||||||
install(Authentication) {
|
|
||||||
notarizedBasic("basic") {
|
|
||||||
realm = "Ktor realm 1"
|
|
||||||
// configure basic authentication provider..
|
|
||||||
}
|
|
||||||
notarizedJwt("jwt") {
|
|
||||||
realm = "Ktor realm 2"
|
|
||||||
// configure jwt authentication provider...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
routing {
|
|
||||||
authenticate("basic") {
|
|
||||||
route("/basic_auth") {
|
|
||||||
notarizedGet(basicAuthGetInfo) {
|
|
||||||
call.respondText { "basic auth" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
authenticate("jwt") {
|
|
||||||
route("/jwt") {
|
|
||||||
notarizedGet(jwtAuthGetInfo) {
|
|
||||||
call.respondText { "jwt" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val basicAuthGetInfo = MethodInfo<Unit, ExampleResponse>(
|
|
||||||
summary = "Another get test",
|
|
||||||
description = "testing more",
|
|
||||||
responseInfo = testGetResponse,
|
|
||||||
securitySchemes = setOf("basic")
|
|
||||||
)
|
|
||||||
val jwtAuthGetInfo = basicAuthGetInfo.copy(securitySchemes = setOf("jwt"))
|
|
||||||
```
|
|
||||||
|
|
||||||
### Enabling Swagger ui
|
|
||||||
To enable Swagger UI, `kompendium-swagger-ui` needs to be added.
|
|
||||||
This will also add the [ktor webjars feature](https://ktor.io/docs/webjars.html) to your classpath as it is required for swagger ui.
|
|
||||||
Minimal Example:
|
|
||||||
```kotlin
|
|
||||||
install(Webjars)
|
|
||||||
routing {
|
|
||||||
openApi(oas)
|
|
||||||
swaggerUI()
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Enabling ReDoc
|
|
||||||
Unlike swagger, redoc is provided (perhaps confusingly, in the `core` module). This means out of the box with `kompendium-core`, you can add
|
|
||||||
[ReDoc](https://github.com/Redocly/redoc) as follows
|
|
||||||
|
|
||||||
```kotlin
|
|
||||||
routing {
|
|
||||||
openApi(oas)
|
|
||||||
redoc(oas)
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Limitations
|
In addition to publishing releases to Maven Central, a snapshot version gets published to GitHub Packages on every merge
|
||||||
|
to `main`. These can be consumed by adding the repository to your gradle build file. Instructions can be
|
||||||
|
found [here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package)
|
||||||
|
|
||||||
### Kompendium as a singleton
|
# Library Details
|
||||||
|
|
||||||
Currently, Kompendium exists as a Kotlin object. This comes with a couple perks, but a couple downsides. Primarily,
|
Library documentation lives alongside the source code, and is generated into a static site via Dokka. Can be viewed [here](https://bkbnio.github.io/kompendium)
|
||||||
it offers a seriously clean UX where the implementer doesn't need to worry about what instance to send data to. The main
|
|
||||||
drawback, however, is that you are limited to a single API per classpath.
|
|
||||||
|
|
||||||
If this is a blocker, please open a GitHub issue, and we can start to think out solutions!
|
## Local Development
|
||||||
|
|
||||||
## Future Work
|
Kompendium should run locally right out of the box, no configuration necessary (assuming you have JDK 1.8+ installed).
|
||||||
Work on V1 of Kompendium has come to a close. This, however, does not mean it has achieved complete
|
New features can be built locally and published to your local maven repository with the `./gradlew publishToMavenLocal`
|
||||||
parity with the OpenAPI feature spec, nor does it have all-of-the nice to have features that a truly next-gen API spec
|
command!
|
||||||
should have. There are several outstanding features that have been added to the
|
|
||||||
[V2 Milestone](https://github.com/lg-backbone/kompendium/milestone/2). Among others, this includes
|
|
||||||
|
|
||||||
- Polymorphic support
|
## The Playground
|
||||||
- AsyncAPI Integration
|
|
||||||
- Field Validation
|
|
||||||
- MavenCentral Release
|
|
||||||
|
|
||||||
If you have a feature that you would like to see implemented that is not on this list, or discover a 🐞, please open
|
This repo contains a `playground` module that contains a number of working examples showcasing the capabilities of
|
||||||
an issue [here](https://github.com/lg-backbone/kompendium/issues/new)
|
Kompendium.
|
||||||
|
|
||||||
|
Feel free to check it out, or even create your own example!
|
||||||
|
@ -1,62 +1,46 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("org.jetbrains.kotlin.jvm") version "1.4.32" apply false
|
kotlin("jvm") version "1.6.10" apply false
|
||||||
id("io.gitlab.arturbosch.detekt") version "1.16.0-RC2" apply false
|
kotlin("plugin.serialization") version "1.6.10" apply false
|
||||||
id("com.adarshr.test-logger") version "3.0.0" apply false
|
id("io.bkbn.sourdough.library.jvm") version "0.6.0" apply false
|
||||||
|
id("io.bkbn.sourdough.application.jvm") version "0.6.0" apply false
|
||||||
|
id("io.bkbn.sourdough.root") version "0.6.0"
|
||||||
|
id("com.github.jakemarsden.git-hooks") version "0.0.2"
|
||||||
|
id("org.jetbrains.dokka") version "1.6.10"
|
||||||
|
id("org.jetbrains.kotlinx.kover") version "0.5.0"
|
||||||
|
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
gitHooks {
|
||||||
|
setHooks(
|
||||||
|
mapOf(
|
||||||
|
"pre-commit" to "detekt",
|
||||||
|
"pre-push" to "test"
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "org.leafygreens"
|
group = "io.bkbn"
|
||||||
version = run {
|
version = run {
|
||||||
val baseVersion =
|
val baseVersion =
|
||||||
project.findProperty("project.version") ?: error("project.version must be set in gradle.properties")
|
project.findProperty("project.version") ?: error("project.version needs to be set in gradle.properties")
|
||||||
when ((project.findProperty("release") as? String)?.toBoolean()) {
|
when ((project.findProperty("release") as? String)?.toBoolean()) {
|
||||||
true -> baseVersion
|
true -> baseVersion
|
||||||
else -> "$baseVersion-SNAPSHOT"
|
else -> "$baseVersion-SNAPSHOT"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
subprojects {
|
||||||
mavenCentral()
|
plugins.withType(io.bkbn.sourdough.gradle.library.jvm.LibraryJvmPlugin::class) {
|
||||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") }
|
extensions.configure(io.bkbn.sourdough.gradle.library.jvm.LibraryJvmExtension::class) {
|
||||||
}
|
githubOrg.set("bkbnio")
|
||||||
|
githubRepo.set("kompendium")
|
||||||
apply(plugin = "org.jetbrains.kotlin.jvm")
|
licenseName.set("MIT License")
|
||||||
apply(plugin = "io.gitlab.arturbosch.detekt")
|
licenseUrl.set("https://mit-license.org")
|
||||||
apply(plugin = "com.adarshr.test-logger")
|
developerId.set("unredundant")
|
||||||
apply(plugin = "idea")
|
developerName.set("Ryan Brink")
|
||||||
|
developerEmail.set("admin@bkbn.io")
|
||||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "11"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configure<com.adarshr.gradle.testlogger.TestLoggerExtension> {
|
|
||||||
setTheme("standard")
|
|
||||||
setLogLevel("lifecycle")
|
|
||||||
showExceptions = true
|
|
||||||
showStackTraces = true
|
|
||||||
showFullStackTraces = false
|
|
||||||
showCauses = true
|
|
||||||
slowThreshold = 2000
|
|
||||||
showSummary = true
|
|
||||||
showSimpleNames = false
|
|
||||||
showPassed = true
|
|
||||||
showSkipped = true
|
|
||||||
showFailed = true
|
|
||||||
showStandardStreams = false
|
|
||||||
showPassedStandardStreams = true
|
|
||||||
showSkippedStandardStreams = true
|
|
||||||
showFailedStandardStreams = true
|
|
||||||
}
|
|
||||||
|
|
||||||
configure<io.gitlab.arturbosch.detekt.extensions.DetektExtension> {
|
|
||||||
toolVersion = "1.16.0-RC2"
|
|
||||||
config = files("${rootProject.projectDir}/detekt.yml")
|
|
||||||
buildUponDefaultConfig = true
|
|
||||||
}
|
|
||||||
|
|
||||||
configure<JavaPluginExtension> {
|
|
||||||
withSourcesJar()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
3
codacy.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
exclude_paths:
|
||||||
|
- "**/*.md"
|
705
detekt.yml
@ -1,710 +1,25 @@
|
|||||||
build:
|
|
||||||
maxIssues: 0
|
|
||||||
excludeCorrectable: false
|
|
||||||
weights:
|
|
||||||
# complexity: 2
|
|
||||||
# LongParameterList: 1
|
|
||||||
# style: 1
|
|
||||||
# comments: 1
|
|
||||||
|
|
||||||
config:
|
|
||||||
validation: true
|
|
||||||
warningsAsErrors: false
|
|
||||||
# when writing own rules with new properties, exclude the property path e.g.: 'my_rule_set,.*>.*>[my_property]'
|
|
||||||
excludes: ''
|
|
||||||
|
|
||||||
processors:
|
|
||||||
active: true
|
|
||||||
exclude:
|
|
||||||
- 'DetektProgressListener'
|
|
||||||
|
|
||||||
console-reports:
|
|
||||||
active: true
|
|
||||||
exclude:
|
|
||||||
- 'ProjectStatisticsReport'
|
|
||||||
- 'ComplexityReport'
|
|
||||||
- 'NotificationReport'
|
|
||||||
- 'FileBasedFindingsReport'
|
|
||||||
|
|
||||||
output-reports:
|
|
||||||
active: true
|
|
||||||
|
|
||||||
comments:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
AbsentOrWrongFileLicense:
|
|
||||||
active: false
|
|
||||||
licenseTemplateFile: 'license.template'
|
|
||||||
CommentOverPrivateFunction:
|
|
||||||
active: false
|
|
||||||
CommentOverPrivateProperty:
|
|
||||||
active: false
|
|
||||||
EndOfSentenceFormat:
|
|
||||||
active: false
|
|
||||||
endOfSentenceFormat: '([.?!][ \t\n\r\f<])|([.?!:]$)'
|
|
||||||
UndocumentedPublicClass:
|
|
||||||
active: false
|
|
||||||
searchInNestedClass: true
|
|
||||||
searchInInnerClass: true
|
|
||||||
searchInInnerObject: true
|
|
||||||
searchInInnerInterface: true
|
|
||||||
UndocumentedPublicFunction:
|
|
||||||
active: false
|
|
||||||
UndocumentedPublicProperty:
|
|
||||||
active: false
|
|
||||||
|
|
||||||
complexity:
|
complexity:
|
||||||
active: true
|
TooManyFunctions:
|
||||||
ComplexCondition:
|
|
||||||
active: true
|
|
||||||
threshold: 4
|
|
||||||
ComplexInterface:
|
|
||||||
active: false
|
active: false
|
||||||
threshold: 10
|
|
||||||
includeStaticDeclarations: false
|
|
||||||
includePrivateDeclarations: false
|
|
||||||
ComplexMethod:
|
|
||||||
active: true
|
|
||||||
threshold: 25
|
|
||||||
ignoreSingleWhenExpression: false
|
|
||||||
ignoreSimpleWhenEntries: false
|
|
||||||
ignoreNestingFunctions: false
|
|
||||||
nestingFunctions: [run, let, apply, with, also, use, forEach, isNotNull, ifNull]
|
|
||||||
LabeledExpression:
|
|
||||||
active: false
|
|
||||||
ignoredLabels: []
|
|
||||||
LargeClass:
|
|
||||||
active: true
|
|
||||||
threshold: 600
|
|
||||||
LongMethod:
|
|
||||||
active: true
|
|
||||||
threshold: 80
|
|
||||||
LongParameterList:
|
LongParameterList:
|
||||||
active: true
|
active: true
|
||||||
functionThreshold: 10
|
functionThreshold: 10
|
||||||
constructorThreshold: 10
|
constructorThreshold: 10
|
||||||
ignoreDefaultParameters: false
|
ComplexMethod:
|
||||||
ignoreDataClasses: true
|
threshold: 20
|
||||||
ignoreAnnotated: []
|
|
||||||
MethodOverloading:
|
|
||||||
active: false
|
|
||||||
threshold: 6
|
|
||||||
NamedArguments:
|
|
||||||
active: false
|
|
||||||
threshold: 3
|
|
||||||
NestedBlockDepth:
|
|
||||||
active: true
|
|
||||||
threshold: 6
|
|
||||||
ReplaceSafeCallChainWithRun:
|
|
||||||
active: false
|
|
||||||
StringLiteralDuplication:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
threshold: 3
|
|
||||||
ignoreAnnotation: true
|
|
||||||
excludeStringsWithLessThan5Characters: true
|
|
||||||
ignoreStringsRegex: '$^'
|
|
||||||
TooManyFunctions:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
thresholdInFiles: 11
|
|
||||||
thresholdInClasses: 11
|
|
||||||
thresholdInInterfaces: 11
|
|
||||||
thresholdInObjects: 11
|
|
||||||
thresholdInEnums: 11
|
|
||||||
ignoreDeprecated: false
|
|
||||||
ignorePrivate: false
|
|
||||||
ignoreOverridden: false
|
|
||||||
|
|
||||||
coroutines:
|
|
||||||
active: true
|
|
||||||
GlobalCoroutineUsage:
|
|
||||||
active: false
|
|
||||||
RedundantSuspendModifier:
|
|
||||||
active: false
|
|
||||||
SleepInsteadOfDelay:
|
|
||||||
active: false
|
|
||||||
SuspendFunWithFlowReturnType:
|
|
||||||
active: false
|
|
||||||
|
|
||||||
empty-blocks:
|
|
||||||
active: true
|
|
||||||
EmptyCatchBlock:
|
|
||||||
active: true
|
|
||||||
allowedExceptionNameRegex: '_|(ignore|expected).*'
|
|
||||||
EmptyClassBlock:
|
|
||||||
active: true
|
|
||||||
EmptyDefaultConstructor:
|
|
||||||
active: true
|
|
||||||
EmptyDoWhileBlock:
|
|
||||||
active: true
|
|
||||||
EmptyElseBlock:
|
|
||||||
active: true
|
|
||||||
EmptyFinallyBlock:
|
|
||||||
active: true
|
|
||||||
EmptyForBlock:
|
|
||||||
active: true
|
|
||||||
EmptyFunctionBlock:
|
|
||||||
active: true
|
|
||||||
ignoreOverridden: false
|
|
||||||
EmptyIfBlock:
|
|
||||||
active: true
|
|
||||||
EmptyInitBlock:
|
|
||||||
active: true
|
|
||||||
EmptyKtFile:
|
|
||||||
active: true
|
|
||||||
EmptySecondaryConstructor:
|
|
||||||
active: true
|
|
||||||
EmptyTryBlock:
|
|
||||||
active: true
|
|
||||||
EmptyWhenBlock:
|
|
||||||
active: true
|
|
||||||
EmptyWhileBlock:
|
|
||||||
active: true
|
|
||||||
|
|
||||||
exceptions:
|
|
||||||
active: true
|
|
||||||
ExceptionRaisedInUnexpectedLocation:
|
|
||||||
active: true
|
|
||||||
methodNames: [toString, hashCode, equals, finalize]
|
|
||||||
InstanceOfCheckForException:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
NotImplementedDeclaration:
|
|
||||||
active: false
|
|
||||||
ObjectExtendsThrowable:
|
|
||||||
active: false
|
|
||||||
PrintStackTrace:
|
|
||||||
active: true
|
|
||||||
RethrowCaughtException:
|
|
||||||
active: true
|
|
||||||
ReturnFromFinally:
|
|
||||||
active: true
|
|
||||||
ignoreLabeled: false
|
|
||||||
SwallowedException:
|
|
||||||
active: true
|
|
||||||
ignoredExceptionTypes:
|
|
||||||
- InterruptedException
|
|
||||||
- NumberFormatException
|
|
||||||
- ParseException
|
|
||||||
- MalformedURLException
|
|
||||||
allowedExceptionNameRegex: '_|(ignore|expected).*'
|
|
||||||
ThrowingExceptionFromFinally:
|
|
||||||
active: true
|
|
||||||
ThrowingExceptionInMain:
|
|
||||||
active: false
|
|
||||||
ThrowingExceptionsWithoutMessageOrCause:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
exceptions:
|
|
||||||
- IllegalArgumentException
|
|
||||||
- IllegalStateException
|
|
||||||
- IOException
|
|
||||||
ThrowingNewInstanceOfSameException:
|
|
||||||
active: true
|
|
||||||
TooGenericExceptionCaught:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
exceptionNames:
|
|
||||||
- ArrayIndexOutOfBoundsException
|
|
||||||
- Error
|
|
||||||
- Exception
|
|
||||||
- IllegalMonitorStateException
|
|
||||||
- NullPointerException
|
|
||||||
- IndexOutOfBoundsException
|
|
||||||
- RuntimeException
|
|
||||||
- Throwable
|
|
||||||
allowedExceptionNameRegex: '_|(ignore|expected).*'
|
|
||||||
TooGenericExceptionThrown:
|
|
||||||
active: true
|
|
||||||
exceptionNames:
|
|
||||||
- Error
|
|
||||||
- Exception
|
|
||||||
- Throwable
|
|
||||||
- RuntimeException
|
|
||||||
|
|
||||||
formatting:
|
formatting:
|
||||||
active: true
|
|
||||||
android: false
|
|
||||||
autoCorrect: true
|
|
||||||
AnnotationOnSeparateLine:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
AnnotationSpacing:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
ArgumentListWrapping:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
ChainWrapping:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
CommentSpacing:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
EnumEntryNameCase:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
Filename:
|
|
||||||
active: true
|
|
||||||
FinalNewline:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
insertFinalNewLine: true
|
|
||||||
ImportOrdering:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
layout: 'idea'
|
|
||||||
Indentation:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
indentSize: 4
|
|
||||||
continuationIndentSize: 4
|
|
||||||
MaximumLineLength:
|
|
||||||
active: true
|
|
||||||
maxLineLength: 120
|
|
||||||
ModifierOrdering:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
MultiLineIfElse:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoBlankLineBeforeRbrace:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoConsecutiveBlankLines:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoEmptyClassBody:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoEmptyFirstLineInMethodBlock:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
NoLineBreakAfterElse:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoLineBreakBeforeAssignment:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoMultipleSpaces:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoSemicolons:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoTrailingSpaces:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoUnitReturn:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoUnusedImports:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
NoWildcardImports:
|
|
||||||
active: true
|
|
||||||
PackageName:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
ParameterListWrapping:
|
ParameterListWrapping:
|
||||||
active: false
|
active: false
|
||||||
autoCorrect: true
|
|
||||||
indentSize: 4
|
|
||||||
SpacingAroundAngleBrackets:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundColon:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundComma:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundCurly:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundDot:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundDoubleColon:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundKeyword:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundOperators:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundParens:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundRangeOperator:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingAroundUnaryOperator:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingBetweenDeclarationsWithAnnotations:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
SpacingBetweenDeclarationsWithComments:
|
|
||||||
active: false
|
|
||||||
autoCorrect: true
|
|
||||||
StringTemplate:
|
|
||||||
active: true
|
|
||||||
autoCorrect: true
|
|
||||||
|
|
||||||
naming:
|
|
||||||
active: true
|
|
||||||
ClassNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
classPattern: '[A-Z][a-zA-Z0-9]*'
|
|
||||||
ConstructorParameterNaming:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
parameterPattern: '[a-z][A-Za-z0-9]*'
|
|
||||||
privateParameterPattern: '[a-z][A-Za-z0-9]*'
|
|
||||||
excludeClassPattern: '$^'
|
|
||||||
ignoreOverridden: true
|
|
||||||
EnumNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
enumEntryPattern: '[A-Z][_a-zA-Z0-9]*'
|
|
||||||
ForbiddenClassName:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
forbiddenName: []
|
|
||||||
FunctionMaxLength:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
maximumFunctionNameLength: 30
|
|
||||||
FunctionMinLength:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
minimumFunctionNameLength: 3
|
|
||||||
FunctionNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
functionPattern: '([a-z][a-zA-Z0-9]*)|(`.*`)'
|
|
||||||
excludeClassPattern: '$^'
|
|
||||||
ignoreOverridden: true
|
|
||||||
ignoreAnnotated: ['Composable']
|
|
||||||
FunctionParameterNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
parameterPattern: '[a-z][A-Za-z0-9]*'
|
|
||||||
excludeClassPattern: '$^'
|
|
||||||
ignoreOverridden: true
|
|
||||||
InvalidPackageDeclaration:
|
|
||||||
active: false
|
|
||||||
excludes: ['*.kts']
|
|
||||||
rootPackage: ''
|
|
||||||
MatchingDeclarationName:
|
|
||||||
active: true
|
|
||||||
mustBeFirst: true
|
|
||||||
MemberNameEqualsClassName:
|
|
||||||
active: true
|
|
||||||
ignoreOverridden: true
|
|
||||||
NonBooleanPropertyPrefixedWithIs:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
ObjectPropertyNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
constantPattern: '[A-Za-z][_A-Za-z0-9]*'
|
|
||||||
propertyPattern: '[A-Za-z][_A-Za-z0-9]*'
|
|
||||||
privatePropertyPattern: '(_)?[A-Za-z][_A-Za-z0-9]*'
|
|
||||||
PackageNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
packagePattern: '[a-z]+(\.[a-z][A-Za-z0-9]*)*'
|
|
||||||
TopLevelPropertyNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
constantPattern: '[A-Z][_A-Z0-9]*'
|
|
||||||
propertyPattern: '[A-Za-z][_A-Za-z0-9]*'
|
|
||||||
privatePropertyPattern: '_?[A-Za-z][_A-Za-z0-9]*'
|
|
||||||
VariableMaxLength:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
maximumVariableNameLength: 64
|
|
||||||
VariableMinLength:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
minimumVariableNameLength: 1
|
|
||||||
VariableNaming:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
variablePattern: '[a-z][A-Za-z0-9]*'
|
|
||||||
privateVariablePattern: '(_)?[a-z][A-Za-z0-9]*'
|
|
||||||
excludeClassPattern: '$^'
|
|
||||||
ignoreOverridden: true
|
|
||||||
|
|
||||||
performance:
|
|
||||||
active: true
|
|
||||||
ArrayPrimitive:
|
|
||||||
active: true
|
|
||||||
ForEachOnRange:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
SpreadOperator:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
UnnecessaryTemporaryInstantiation:
|
|
||||||
active: true
|
|
||||||
|
|
||||||
potential-bugs:
|
|
||||||
active: true
|
|
||||||
Deprecation:
|
|
||||||
active: false
|
|
||||||
DontDowncastCollectionTypes:
|
|
||||||
active: false
|
|
||||||
DuplicateCaseInWhenExpression:
|
|
||||||
active: true
|
|
||||||
EqualsAlwaysReturnsTrueOrFalse:
|
|
||||||
active: true
|
|
||||||
EqualsWithHashCodeExist:
|
|
||||||
active: true
|
|
||||||
ExitOutsideMain:
|
|
||||||
active: false
|
|
||||||
ExplicitGarbageCollectionCall:
|
|
||||||
active: true
|
|
||||||
HasPlatformType:
|
|
||||||
active: false
|
|
||||||
IgnoredReturnValue:
|
|
||||||
active: false
|
|
||||||
restrictToAnnotatedMethods: true
|
|
||||||
returnValueAnnotations: ['*.CheckReturnValue', '*.CheckResult']
|
|
||||||
ImplicitDefaultLocale:
|
|
||||||
active: true
|
|
||||||
ImplicitUnitReturnType:
|
|
||||||
active: false
|
|
||||||
allowExplicitReturnType: true
|
|
||||||
InvalidRange:
|
|
||||||
active: true
|
|
||||||
IteratorHasNextCallsNextMethod:
|
|
||||||
active: true
|
|
||||||
IteratorNotThrowingNoSuchElementException:
|
|
||||||
active: true
|
|
||||||
LateinitUsage:
|
|
||||||
active: false
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
excludeAnnotatedProperties: []
|
|
||||||
ignoreOnClassesPattern: ''
|
|
||||||
MapGetWithNotNullAssertionOperator:
|
|
||||||
active: false
|
|
||||||
MissingWhenCase:
|
|
||||||
active: true
|
|
||||||
allowElseExpression: true
|
|
||||||
NullableToStringCall:
|
|
||||||
active: false
|
|
||||||
RedundantElseInWhen:
|
|
||||||
active: true
|
|
||||||
UnconditionalJumpStatementInLoop:
|
|
||||||
active: false
|
|
||||||
UnnecessaryNotNullOperator:
|
|
||||||
active: true
|
|
||||||
UnnecessarySafeCall:
|
|
||||||
active: true
|
|
||||||
UnreachableCatchBlock:
|
|
||||||
active: false
|
|
||||||
UnreachableCode:
|
|
||||||
active: true
|
|
||||||
UnsafeCallOnNullableType:
|
|
||||||
active: true
|
|
||||||
UnsafeCast:
|
|
||||||
active: true
|
|
||||||
UselessPostfixExpression:
|
|
||||||
active: false
|
|
||||||
WrongEqualsTypeParameter:
|
|
||||||
active: true
|
|
||||||
|
|
||||||
style:
|
style:
|
||||||
active: true
|
|
||||||
ClassOrdering:
|
|
||||||
active: false
|
|
||||||
CollapsibleIfStatements:
|
|
||||||
active: false
|
|
||||||
DataClassContainsFunctions:
|
|
||||||
active: false
|
|
||||||
conversionFunctionPrefix: 'to'
|
|
||||||
DataClassShouldBeImmutable:
|
|
||||||
active: false
|
|
||||||
DestructuringDeclarationWithTooManyEntries:
|
|
||||||
active: false
|
|
||||||
maxDestructuringEntries: 3
|
|
||||||
EqualsNullCall:
|
|
||||||
active: true
|
|
||||||
EqualsOnSignatureLine:
|
|
||||||
active: false
|
|
||||||
ExplicitCollectionElementAccessMethod:
|
|
||||||
active: false
|
|
||||||
ExplicitItLambdaParameter:
|
|
||||||
active: false
|
|
||||||
ExpressionBodySyntax:
|
|
||||||
active: false
|
|
||||||
includeLineWrapping: false
|
|
||||||
ForbiddenComment:
|
|
||||||
active: true
|
|
||||||
values: ['TODO:', 'FIXME:', 'STOPSHIP:']
|
|
||||||
allowedPatterns: ''
|
|
||||||
ForbiddenImport:
|
|
||||||
active: false
|
|
||||||
imports: []
|
|
||||||
forbiddenPatterns: ''
|
|
||||||
ForbiddenMethodCall:
|
|
||||||
active: false
|
|
||||||
methods: ['kotlin.io.println', 'kotlin.io.print']
|
|
||||||
ForbiddenPublicDataClass:
|
|
||||||
active: true
|
|
||||||
excludes: ['**']
|
|
||||||
ignorePackages: ['*.internal', '*.internal.*']
|
|
||||||
ForbiddenVoid:
|
|
||||||
active: false
|
|
||||||
ignoreOverridden: false
|
|
||||||
ignoreUsageInGenerics: false
|
|
||||||
FunctionOnlyReturningConstant:
|
|
||||||
active: true
|
|
||||||
ignoreOverridableFunction: true
|
|
||||||
ignoreActualFunction: true
|
|
||||||
excludedFunctions: 'describeContents'
|
|
||||||
excludeAnnotatedFunction: ['dagger.Provides']
|
|
||||||
LibraryCodeMustSpecifyReturnType:
|
|
||||||
active: true
|
|
||||||
excludes: ['**']
|
|
||||||
LibraryEntitiesShouldNotBePublic:
|
|
||||||
active: true
|
|
||||||
excludes: ['**']
|
|
||||||
LoopWithTooManyJumpStatements:
|
|
||||||
active: true
|
|
||||||
maxJumpCount: 1
|
|
||||||
MagicNumber:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
ignoreNumbers: ['-1', '0', '1', '2']
|
|
||||||
ignoreHashCodeFunction: true
|
|
||||||
ignorePropertyDeclaration: false
|
|
||||||
ignoreLocalVariableDeclaration: false
|
|
||||||
ignoreConstantDeclaration: true
|
|
||||||
ignoreCompanionObjectPropertyDeclaration: true
|
|
||||||
ignoreAnnotation: false
|
|
||||||
ignoreNamedArgument: true
|
|
||||||
ignoreEnums: false
|
|
||||||
ignoreRanges: false
|
|
||||||
ignoreExtensionFunctions: true
|
|
||||||
MandatoryBracesIfStatements:
|
|
||||||
active: false
|
|
||||||
MandatoryBracesLoops:
|
|
||||||
active: false
|
|
||||||
MaxLineLength:
|
MaxLineLength:
|
||||||
|
excludes: ['**/test/**/*']
|
||||||
active: true
|
active: true
|
||||||
maxLineLength: 120
|
maxLineLength: 120
|
||||||
excludePackageStatements: true
|
MagicNumber:
|
||||||
excludeImportStatements: true
|
excludes: ['**/kompendium-playground/**/*', '**/test/**/*']
|
||||||
excludeCommentStatements: false
|
naming:
|
||||||
MayBeConst:
|
ConstructorParameterNaming:
|
||||||
active: true
|
|
||||||
ModifierOrder:
|
|
||||||
active: true
|
|
||||||
MultilineLambdaItParameter:
|
|
||||||
active: false
|
active: false
|
||||||
NestedClassesVisibility:
|
performance:
|
||||||
active: true
|
SpreadOperator:
|
||||||
NewLineAtEndOfFile:
|
|
||||||
active: true
|
|
||||||
NoTabs:
|
|
||||||
active: false
|
active: false
|
||||||
OptionalAbstractKeyword:
|
|
||||||
active: true
|
|
||||||
OptionalUnit:
|
|
||||||
active: false
|
|
||||||
OptionalWhenBraces:
|
|
||||||
active: false
|
|
||||||
PreferToOverPairSyntax:
|
|
||||||
active: false
|
|
||||||
ProtectedMemberInFinalClass:
|
|
||||||
active: true
|
|
||||||
RedundantExplicitType:
|
|
||||||
active: false
|
|
||||||
RedundantHigherOrderMapUsage:
|
|
||||||
active: false
|
|
||||||
RedundantVisibilityModifierRule:
|
|
||||||
active: false
|
|
||||||
ReturnCount:
|
|
||||||
active: true
|
|
||||||
max: 2
|
|
||||||
excludedFunctions: 'equals'
|
|
||||||
excludeLabeled: false
|
|
||||||
excludeReturnFromLambda: true
|
|
||||||
excludeGuardClauses: false
|
|
||||||
SafeCast:
|
|
||||||
active: true
|
|
||||||
SerialVersionUIDInSerializableClass:
|
|
||||||
active: true
|
|
||||||
SpacingBetweenPackageAndImports:
|
|
||||||
active: false
|
|
||||||
ThrowsCount:
|
|
||||||
active: true
|
|
||||||
max: 2
|
|
||||||
TrailingWhitespace:
|
|
||||||
active: false
|
|
||||||
UnderscoresInNumericLiterals:
|
|
||||||
active: false
|
|
||||||
acceptableDecimalLength: 5
|
|
||||||
UnnecessaryAbstractClass:
|
|
||||||
active: true
|
|
||||||
excludeAnnotatedClasses: ['dagger.Module']
|
|
||||||
UnnecessaryAnnotationUseSiteTarget:
|
|
||||||
active: false
|
|
||||||
UnnecessaryApply:
|
|
||||||
active: true
|
|
||||||
UnnecessaryFilter:
|
|
||||||
active: false
|
|
||||||
UnnecessaryInheritance:
|
|
||||||
active: true
|
|
||||||
UnnecessaryLet:
|
|
||||||
active: false
|
|
||||||
UnnecessaryParentheses:
|
|
||||||
active: false
|
|
||||||
UntilInsteadOfRangeTo:
|
|
||||||
active: false
|
|
||||||
UnusedImports:
|
|
||||||
active: false
|
|
||||||
UnusedPrivateClass:
|
|
||||||
active: true
|
|
||||||
UnusedPrivateMember:
|
|
||||||
active: true
|
|
||||||
allowedNames: '(_|ignored|expected|serialVersionUID)'
|
|
||||||
UseArrayLiteralsInAnnotations:
|
|
||||||
active: false
|
|
||||||
UseCheckNotNull:
|
|
||||||
active: false
|
|
||||||
UseCheckOrError:
|
|
||||||
active: false
|
|
||||||
UseDataClass:
|
|
||||||
active: false
|
|
||||||
excludeAnnotatedClasses: []
|
|
||||||
allowVars: false
|
|
||||||
UseEmptyCounterpart:
|
|
||||||
active: false
|
|
||||||
UseIfEmptyOrIfBlank:
|
|
||||||
active: false
|
|
||||||
UseIfInsteadOfWhen:
|
|
||||||
active: false
|
|
||||||
UseIsNullOrEmpty:
|
|
||||||
active: false
|
|
||||||
UseRequire:
|
|
||||||
active: false
|
|
||||||
UseRequireNotNull:
|
|
||||||
active: false
|
|
||||||
UselessCallOnNotNull:
|
|
||||||
active: true
|
|
||||||
UtilityClassWithPublicConstructor:
|
|
||||||
active: true
|
|
||||||
VarCouldBeVal:
|
|
||||||
active: true
|
|
||||||
WildcardImport:
|
|
||||||
active: true
|
|
||||||
excludes: ['**/test/**', '**/testIntegration/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
|
|
||||||
excludeImports: ['java.util.*', 'kotlinx.android.synthetic.*']
|
|
||||||
|
4
docs/2.0.1/images/anchor-copy-button.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21.2496 5.3C20.3496 4.5 19.2496 4 18.0496 4C16.8496 4 15.6496 4.5 14.8496 5.3L10.3496 9.8L11.7496 11.2L16.2496 6.7C17.2496 5.7 18.8496 5.7 19.8496 6.7C20.8496 7.7 20.8496 9.3 19.8496 10.3L15.3496 14.8L16.7496 16.2L21.2496 11.7C22.1496 10.8 22.5496 9.7 22.5496 8.5C22.5496 7.3 22.1496 6.2 21.2496 5.3Z" fill="#637282"/>
|
||||||
|
<path d="M8.35 16.7998C7.35 17.7998 5.75 17.7998 4.75 16.7998C3.75 15.7998 3.75 14.1998 4.75 13.1998L9.25 8.6998L7.85 7.2998L3.35 11.7998C1.55 13.5998 1.55 16.3998 3.35 18.1998C4.25 19.0998 5.35 19.4998 6.55 19.4998C7.75 19.4998 8.85 19.0998 9.75 18.1998L14.25 13.6998L12.85 12.2998L8.35 16.7998Z" fill="#637282"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 754 B |
3
docs/2.0.1/images/arrow_down.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="-5 -3 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M11 9l-6 5.25V3.75z" fill="currentColor"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 160 B |
3
docs/2.0.1/images/copy-icon.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 4H15V16H5V4ZM17 7H19V18V20H17H8V18H17V7Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 215 B |
3
docs/2.0.1/images/copy-successful-icon.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18 9C18 14 14 18 9 18C4 18 0 14 0 9C0 4 4 0 9 0C14 0 18 4 18 9ZM14.2 6.2L12.8 4.8L7.5 10.1L5.3 7.8L3.8 9.2L7.5 13L14.2 6.2Z" fill="#4DBB5F"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 258 B |
3
docs/2.0.1/images/footer-go-to-link.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M8 0H2.3949L4.84076 2.44586L0 7.28662L0.713376 8L5.55414 3.15924L8 5.6051V0Z" fill="#637282"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 206 B |
4
docs/2.0.1/images/go-to-top-icon.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M11.3337 9.66683H0.666992L6.00033 3.66683L11.3337 9.66683Z" fill="#637282"/>
|
||||||
|
<path d="M0.666992 0.333496H11.3337V1.66683H0.666992V0.333496Z" fill="#637282"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 277 B |
10
docs/2.0.1/images/logo-icon.svg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M64 64H0V0H64L31.3373 31.5369L64 64Z" fill="url(#paint0_radial)"/>
|
||||||
|
<defs>
|
||||||
|
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(61.8732 2.63097) scale(73.3111)">
|
||||||
|
<stop offset="0.00343514" stop-color="#EF4857"/>
|
||||||
|
<stop offset="0.4689" stop-color="#D211EC"/>
|
||||||
|
<stop offset="1" stop-color="#7F52FF"/>
|
||||||
|
</radialGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 558 B |
4
docs/2.0.1/images/theme-toggle.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
||||||
|
<path fill="white" fill-rule="evenodd" clip-rule="evenodd"
|
||||||
|
d="M0 9a9 9 0 1018 0A9 9 0 000 9zm16 0a7 7 0 01-7 7V2a7 7 0 017 7z" transform="translate(3, 3)"></path>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 247 B |
136
docs/2.0.1/index.html
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>All modules</title>
|
||||||
|
<link href="images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "";</script> <script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
<script type="text/javascript" src="scripts/sourceset_dependencies.js" async="async"></script><link href="styles/style.css" rel="Stylesheet"><link href="styles/jetbrains-mono.css" rel="Stylesheet"><link href="styles/main.css" rel="Stylesheet"><link href="styles/prism.css" rel="Stylesheet"><link href="styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="scripts/clipboard.js" async="async"></script><script type="text/javascript" src="scripts/navigation-loader.js" async="async"></script><script type="text/javascript" src="scripts/platform-content-handler.js" async="async"></script><script type="text/javascript" src="scripts/main.js" defer="defer"></script><script type="text/javascript" src="scripts/prism.js" async="async"></script><link href="styles/multimodule.css" rel="Stylesheet"> </head>
|
||||||
|
<body>
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="index.html">kompendium</a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageIds="kompendium::.ext/allModules///PointingToDeclaration//0">
|
||||||
|
<div class="breadcrumbs"></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="">Kompendium</h1>
|
||||||
|
<p class="paragraph">Welcome to Kompendium, the straight-forward, minimally-invasive OpenAPI generator for Ktor. </p>
|
||||||
|
<h2 class=""> How to install</h2>
|
||||||
|
<p class="paragraph">Kompendium publishes all releases to Maven Central. As such, using the release versions of <code class="lang-kotlin">Kompendium</code> is as simple as declaring it as an implementation dependency in your <code class="lang-kotlin">build.gradle.kts</code></p>
|
||||||
|
<div class="sample-container">
|
||||||
|
<pre><code class="block lang-kotlin" theme="idea">repositories {<br> mavenCentral()<br>}<br><br>dependencies {<br> implementation("io.bkbn:kompendium-core:latest.release")<br>}</code></pre>
|
||||||
|
<span class="top-right-position"><span class="copy-icon"></span>
|
||||||
|
<div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div>
|
||||||
|
</span></div>
|
||||||
|
<p class="paragraph">In addition to publishing releases to Maven Central, a snapshot version gets published to GitHub Packages on every merge to <code class="lang-kotlin">main</code>. These can be consumed by adding the repository to your gradle build file. Instructions can be found <a href="https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package">here</a></p>
|
||||||
|
<h2 class=""> Setting up the Kompendium Plugin</h2>
|
||||||
|
<p class="paragraph">Kompendium is instantiated as a Ktor Feature/Plugin. It can be added to your API as follows</p>
|
||||||
|
<div class="sample-container">
|
||||||
|
<pre><code class="block lang-kotlin" theme="idea">private fun Application.mainModule() {<br> // Installs the Kompendium Plugin and sets up baseline server metadata<br> install(Kompendium) {<br> spec = OpenApiSpec(/*..*/)<br> }<br> // ...<br>}</code></pre>
|
||||||
|
<span class="top-right-position"><span class="copy-icon"></span>
|
||||||
|
<div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div>
|
||||||
|
</span></div>
|
||||||
|
<h2 class=""> Notarization</h2>
|
||||||
|
<p class="paragraph">The concept of notarizing routes / exceptions / etc. is central to Kompendium. More details on <i>how</i> to notarize your API can be found in the kompendium-core module.</p>
|
||||||
|
</div>
|
||||||
|
<h2 class="">All modules:</h2>
|
||||||
|
<div class="table"><a data-name="1162350513%2FMain%2F0" anchor-label="kompendium-annotations" id="1162350513%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-annotations/index.html">kompendium-annotations</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1162350513%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">This module houses all annotations that Kompendium uses to provide key metadata when performing reflective analysis. </p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1574642149%2FMain%2F0" anchor-label="kompendium-auth" id="1574642149%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-auth/index.html">kompendium-auth</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1574642149%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">This module is responsible for providing wrappers around ktor-auth configuration blocks, allowing users to document their API authentication with minimal modifications to their existing configuration.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1821989938%2FMain%2F0" anchor-label="kompendium-core" id="-1821989938%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-core/index.html">kompendium-core</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1821989938%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">This is where the magic happens. This module houses all the reflective goodness that powers Kompendium.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-960478793%2FMain%2F0" anchor-label="kompendium-locations" id="-960478793%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-locations/index.html">kompendium-locations</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-960478793%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">Adds support for Ktor <a href="https://ktor.io/docs/locations.html">Locations</a> API. Any notarized location <i>must</i> be provided with a <code class="lang-kotlin">TParam</code> annotated with <code class="lang-kotlin">@Location</code>. Nested Locations are supported</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="926400660%2FMain%2F0" anchor-label="kompendium-oas" id="926400660%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-oas/index.html">kompendium-oas</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="926400660%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">This module contains the models that represent the Open Api Specification 3.0 (OAS).</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1622380618%2FMain%2F0" anchor-label="kompendium-swagger-ui" id="-1622380618%2FMain%2F0" data-filterable-set=""></a>
|
||||||
|
<div class="table-row">
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class="w-100"><span class="inline-flex">
|
||||||
|
<div><a href="kompendium-swagger-ui/index.html">kompendium-swagger-ui</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1622380618%2FMain%2F0"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div><span class="brief-comment">
|
||||||
|
<p class="paragraph">Contains the code necessary to launch <code class="lang-kotlin">swagger</code> as your documentation frontend.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
73
docs/2.0.1/kompendium-annotations/index.html
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>kompendium-annotations</title>
|
||||||
|
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
|
||||||
|
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../styles/main.css" rel="Stylesheet"><link href="../styles/prism.css" rel="Stylesheet"><link href="../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../scripts/clipboard.js" async></script><script type="text/javascript" src="../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../scripts/main.js" defer></script><script type="text/javascript" src="../scripts/prism.js" async></script><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>kompendium-annotations</span></span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">This module houses all annotations that Kompendium uses to provide key metadata when performing reflective analysis. </p><p class="paragraph">It is separated from core predominantly to allow for potential future integrations with <a href="https://github.com/google/ksp">Kotlin Symbol Processing</a></p></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Packages</h2>
|
||||||
|
<div class="table"><a data-name="-1446117290%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations" id="-1446117290%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.annotations/index.html">io.bkbn.kompendium.annotations</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1446117290%2FPackages%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="-1446117290%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations" id="-1446117290%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Contains all annotations used by Kompendium</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1495666105%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations.constraint" id="1495666105%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.annotations.constraint/index.html">io.bkbn.kompendium.annotations.constraint</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1495666105%2FPackages%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="1495666105%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations.constraint" id="1495666105%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Annotations that place bespoke constraints on individual fields of your API schemas.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Format</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-format/-format.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format/Format/#kotlin.String/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a>/<a href="-format.html">Format</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Format</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-format.html"><span class="token function">Format</span></a><span class="token punctuation">(</span>format<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>format</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-format/format.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format/format/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a>/<a href="format.html">format</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>format</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="format.html">format</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Format</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-format/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Format</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Format</a><span class="token punctuation">(</span>format<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1740241114%2FProperties%2F-1155457116" anchor-label="format" id="-1740241114%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="format.html">format</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1740241114%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1740241114%2FProperties%2F-1155457116" anchor-label="format" id="-1740241114%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="format.html">format</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems/MaxItems/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a>/<a href="-max-items.html">MaxItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-items.html"><span class="token function">MaxItems</span></a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-items/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1673031400%2FProperties%2F-1155457116" anchor-label="items" id="-1673031400%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="items.html">items</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1673031400%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1673031400%2FProperties%2F-1155457116" anchor-label="items" id="-1673031400%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>items</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-items/items.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems/items/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a>/<a href="items.html">items</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>items</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxLength</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength/MaxLength/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a>/<a href="-max-length.html">MaxLength</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Length</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-length.html"><span class="token function">MaxLength</span></a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxLength</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-length/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Length</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1027251622%2FProperties%2F-1155457116" anchor-label="length" id="-1027251622%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="length.html">length</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1027251622%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1027251622%2FProperties%2F-1155457116" anchor-label="length" id="-1027251622%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>length</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-length/length.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength/length/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a>/<a href="length.html">length</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>length</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxProperties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties/MaxProperties/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a>/<a href="-max-properties.html">MaxProperties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Properties</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-properties.html"><span class="token function">MaxProperties</span></a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MaxProperties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-properties/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Max</span><wbr><span><span>Properties</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1576947962%2FProperties%2F-1155457116" anchor-label="properties" id="1576947962%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="properties.html">properties</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1576947962%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1576947962%2FProperties%2F-1155457116" anchor-label="properties" id="1576947962%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>properties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties/properties/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a>/<a href="properties.html">properties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>properties</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Maximum</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/Maximum/#kotlin.String#kotlin.Boolean/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="-maximum.html">Maximum</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Maximum</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-maximum.html"><span class="token function">Maximum</span></a><span class="token punctuation">(</span>max<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>exclusive</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/exclusive/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="exclusive.html">exclusive</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>exclusive</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Maximum</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-maximum/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Maximum</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Maximum</a><span class="token punctuation">(</span>max<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-445488442%2FProperties%2F-1155457116" anchor-label="exclusive" id="-445488442%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="exclusive.html">exclusive</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-445488442%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-445488442%2FProperties%2F-1155457116" anchor-label="exclusive" id="-445488442%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-947044352%2FProperties%2F-1155457116" anchor-label="max" id="-947044352%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="max.html">max</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-947044352%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-947044352%2FProperties%2F-1155457116" anchor-label="max" id="-947044352%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="max.html">max</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>max</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-maximum/max.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/max/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="max.html">max</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>max</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="max.html">max</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems/MinItems/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a>/<a href="-min-items.html">MinItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-items.html"><span class="token function">MinItems</span></a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-items/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-498191610%2FProperties%2F-1155457116" anchor-label="items" id="-498191610%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="items.html">items</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-498191610%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-498191610%2FProperties%2F-1155457116" anchor-label="items" id="-498191610%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>items</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-items/items.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems/items/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a>/<a href="items.html">items</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>items</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinLength</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength/MinLength/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a>/<a href="-min-length.html">MinLength</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Length</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-length.html"><span class="token function">MinLength</span></a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinLength</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-length/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Length</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1582612280%2FProperties%2F-1155457116" anchor-label="length" id="-1582612280%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="length.html">length</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1582612280%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1582612280%2FProperties%2F-1155457116" anchor-label="length" id="-1582612280%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>length</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-length/length.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength/length/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a>/<a href="length.html">length</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>length</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinProperties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties/MinProperties/#kotlin.Int/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a>/<a href="-min-properties.html">MinProperties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Properties</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-properties.html"><span class="token function">MinProperties</span></a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MinProperties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-properties/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Min</span><wbr><span><span>Properties</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1785863832%2FProperties%2F-1155457116" anchor-label="properties" id="-1785863832%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="properties.html">properties</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1785863832%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1785863832%2FProperties%2F-1155457116" anchor-label="properties" id="-1785863832%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>properties</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties/properties/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a>/<a href="properties.html">properties</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>properties</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Minimum</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/Minimum/#kotlin.String#kotlin.Boolean/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="-minimum.html">Minimum</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Minimum</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-minimum.html"><span class="token function">Minimum</span></a><span class="token punctuation">(</span>min<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>exclusive</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/exclusive/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="exclusive.html">exclusive</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>exclusive</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Minimum</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-minimum/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Minimum</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Minimum</a><span class="token punctuation">(</span>min<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-481799656%2FProperties%2F-1155457116" anchor-label="exclusive" id="-481799656%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="exclusive.html">exclusive</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-481799656%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-481799656%2FProperties%2F-1155457116" anchor-label="exclusive" id="-481799656%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1394662308%2FProperties%2F-1155457116" anchor-label="min" id="1394662308%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="min.html">min</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1394662308%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1394662308%2FProperties%2F-1155457116" anchor-label="min" id="1394662308%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="min.html">min</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>min</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-minimum/min.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/min/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="min.html">min</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>min</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="min.html">min</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MultipleOf</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf/MultipleOf/#kotlin.String/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a>/<a href="-multiple-of.html">MultipleOf</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Multiple</span><wbr><span><span>Of</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-multiple-of.html"><span class="token function">MultipleOf</span></a><span class="token punctuation">(</span>multiple<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>MultipleOf</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Multiple</span><wbr><span><span>Of</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MultipleOf</a><span class="token punctuation">(</span>multiple<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-130467011%2FProperties%2F-1155457116" anchor-label="multiple" id="-130467011%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="multiple.html">multiple</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-130467011%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-130467011%2FProperties%2F-1155457116" anchor-label="multiple" id="-130467011%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="multiple.html">multiple</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>multiple</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf/multiple/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a>/<a href="multiple.html">multiple</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>multiple</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="multiple.html">multiple</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Pattern</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern/Pattern/#kotlin.String/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a>/<a href="-pattern.html">Pattern</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Pattern</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-pattern.html"><span class="token function">Pattern</span></a><span class="token punctuation">(</span>pattern<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Pattern</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-pattern/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Pattern</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Pattern</a><span class="token punctuation">(</span>pattern<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-537571228%2FProperties%2F-1155457116" anchor-label="pattern" id="-537571228%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="pattern.html">pattern</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-537571228%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-537571228%2FProperties%2F-1155457116" anchor-label="pattern" id="-537571228%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="pattern.html">pattern</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>pattern</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern/pattern/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a>/<a href="pattern.html">pattern</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>pattern</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="pattern.html">pattern</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>UniqueItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems/UniqueItems/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">UniqueItems</a>/<a href="-unique-items.html">UniqueItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Unique</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-unique-items.html"><span class="token function">UniqueItems</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,43 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>UniqueItems</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/-unique-items/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">UniqueItems</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Unique</span><wbr><span><span>Items</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">UniqueItems</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"></div>
|
||||||
|
<div class="tabs-section-body"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,226 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>io.bkbn.kompendium.annotations.constraint</title>
|
||||||
|
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
|
||||||
|
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../styles/main.css" rel="Stylesheet"><link href="../../styles/prism.css" rel="Stylesheet"><link href="../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../scripts/main.js" defer></script><script type="text/javascript" src="../../scripts/prism.js" async></script><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations.constraint/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../index.html">kompendium-annotations</a>/<a href="index.html">io.bkbn.kompendium.annotations.constraint</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">Annotations that place bespoke constraints on individual fields of your API schemas.</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Types</h2>
|
||||||
|
<div class="table" data-togglable="Types"><a data-name="-287679614%2FClasslikes%2F-1155457116" anchor-label="Format" id="-287679614%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-format/index.html"><span><span>Format</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-287679614%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-format/index.html">Format</a><span class="token punctuation">(</span>format<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1392773033%2FClasslikes%2F-1155457116" anchor-label="Maximum" id="1392773033%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-maximum/index.html"><span><span>Maximum</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1392773033%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-maximum/index.html">Maximum</a><span class="token punctuation">(</span>max<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="120619101%2FClasslikes%2F-1155457116" anchor-label="MaxItems" id="120619101%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="120619101%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-items/index.html">MaxItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="42560927%2FClasslikes%2F-1155457116" anchor-label="MaxLength" id="42560927%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="42560927%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-length/index.html">MaxLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1620807182%2FClasslikes%2F-1155457116" anchor-label="MaxProperties" id="-1620807182%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1620807182%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-properties/index.html">MaxProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-208956037%2FClasslikes%2F-1155457116" anchor-label="Minimum" id="-208956037%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-minimum/index.html"><span><span>Minimum</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-208956037%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-minimum/index.html">Minimum</a><span class="token punctuation">(</span>min<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="2006625483%2FClasslikes%2F-1155457116" anchor-label="MinItems" id="2006625483%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2006625483%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-items/index.html">MinItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1620783375%2FClasslikes%2F-1155457116" anchor-label="MinLength" id="-1620783375%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1620783375%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-length/index.html">MinLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1305814460%2FClasslikes%2F-1155457116" anchor-label="MinProperties" id="-1305814460%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1305814460%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-properties/index.html">MinProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-938498702%2FClasslikes%2F-1155457116" anchor-label="MultipleOf" id="-938498702%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-938498702%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-multiple-of/index.html">MultipleOf</a><span class="token punctuation">(</span>multiple<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="2125385785%2FClasslikes%2F-1155457116" anchor-label="Pattern" id="2125385785%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-pattern/index.html"><span><span>Pattern</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2125385785%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-pattern/index.html">Pattern</a><span class="token punctuation">(</span>pattern<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-373771718%2FClasslikes%2F-1155457116" anchor-label="UniqueItems" id="-373771718%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-373771718%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-unique-items/index.html">UniqueItems</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Field</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-field/-field.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/Field/#kotlin.String#kotlin.String/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="-field.html">Field</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Field</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-field.html"><span class="token function">Field</span></a><span class="token punctuation">(</span>name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>name</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Indicates that a field name override is desired. Often used for camel case to snake case conversions.</p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>description</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-field/description.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/description/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="description.html">description</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>description</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,97 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Field</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-field/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Field</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Field</a><span class="token punctuation">(</span>name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Annotation used to perform field level overrides.</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Parameters</h2>
|
||||||
|
<div data-togglable="Parameters">
|
||||||
|
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>name</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Indicates that a field name override is desired. Often used for camel case to snake case conversions.</p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="tabbedcontent">Constructors</h2>
|
||||||
|
<div class="table" data-togglable="Constructors"><a data-name="-483896746%2FConstructors%2F-1155457116" anchor-label="Field" id="-483896746%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue TabbedContent">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-field.html"><span><span>Field</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-483896746%2FConstructors%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-field.html"><span class="token function">Field</span></a><span class="token punctuation">(</span>name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-668984367%2FProperties%2F-1155457116" anchor-label="description" id="-668984367%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="description.html">description</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-668984367%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-668984367%2FProperties%2F-1155457116" anchor-label="description" id="-668984367%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1242807038%2FProperties%2F-1155457116" anchor-label="name" id="-1242807038%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1242807038%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1242807038%2FProperties%2F-1155457116" anchor-label="name" id="-1242807038%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>name</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-field/name.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/name/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="name.html">name</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>name</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>FreeFormObject</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject/FreeFormObject/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">FreeFormObject</a>/<a href="-free-form-object.html">FreeFormObject</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-free-form-object.html"><span class="token function">FreeFormObject</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,43 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>FreeFormObject</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-free-form-object/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">FreeFormObject</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">FreeFormObject</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"></div>
|
||||||
|
<div class="tabs-section-body"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>COOKIE</title>
|
||||||
|
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../../styles/main.css" rel="Stylesheet"><link href="../../../../styles/prism.css" rel="Stylesheet"><link href="../../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../../scripts/prism.js" async></script><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">COOKIE</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>COOKIE</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">COOKIE</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>HEADER</title>
|
||||||
|
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../../styles/main.css" rel="Stylesheet"><link href="../../../../styles/prism.css" rel="Stylesheet"><link href="../../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../../scripts/prism.js" async></script><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">HEADER</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>HEADER</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">HEADER</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>PATH</title>
|
||||||
|
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../../styles/main.css" rel="Stylesheet"><link href="../../../../styles/prism.css" rel="Stylesheet"><link href="../../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../../scripts/prism.js" async></script><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">PATH</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>PATH</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">PATH</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>QUERY</title>
|
||||||
|
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../../styles/main.css" rel="Stylesheet"><link href="../../../../styles/prism.css" rel="Stylesheet"><link href="../../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../../scripts/prism.js" async></script><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">QUERY</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>QUERY</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">QUERY</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,138 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>ParamType</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param-type/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">ParamType</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Param</span><wbr><span><span>Type</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">ParamType</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">ParamType</a><span class="token operator">> </span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">The allowed parameter types as specified by the OpenAPI specification</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Entries">Entries</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="tabbedcontent">Entries</h2>
|
||||||
|
<div class="table" data-togglable="Entries"><a data-name="-1082208437%2FClasslikes%2F-1155457116" anchor-label="QUERY" id="-1082208437%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-q-u-e-r-y/index.html">QUERY</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1082208437%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-q-u-e-r-y/index.html">QUERY</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="2022232234%2FClasslikes%2F-1155457116" anchor-label="PATH" id="2022232234%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-p-a-t-h/index.html">PATH</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2022232234%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-p-a-t-h/index.html">PATH</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-595291198%2FClasslikes%2F-1155457116" anchor-label="HEADER" id="-595291198%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-h-e-a-d-e-r/index.html">HEADER</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-595291198%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-h-e-a-d-e-r/index.html">HEADER</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="537402315%2FClasslikes%2F-1155457116" anchor-label="COOKIE" id="537402315%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-c-o-o-k-i-e/index.html">COOKIE</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="537402315%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-c-o-o-k-i-e/index.html">COOKIE</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Param</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param/-param.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param/Param/#io.bkbn.kompendium.annotations.ParamType/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a>/<a href="-param.html">Param</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Param</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-param.html"><span class="token function">Param</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">The type of parameter, must be valid <a href="../-param-type/index.html">ParamType</a></p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,82 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Param</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Param</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Param</a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Used to indicate that a field in a data class represents an OpenAPI parameter</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Parameters</h2>
|
||||||
|
<div data-togglable="Parameters">
|
||||||
|
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">The type of parameter, must be valid <a href="../-param-type/index.html">ParamType</a></p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="tabbedcontent">Constructors</h2>
|
||||||
|
<div class="table" data-togglable="Constructors"><a data-name="392898464%2FConstructors%2F-1155457116" anchor-label="Param" id="392898464%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue TabbedContent">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-param.html"><span><span>Param</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="392898464%2FConstructors%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-param.html"><span class="token function">Param</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1323415430%2FProperties%2F-1155457116" anchor-label="type" id="1323415430%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="type.html">type</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1323415430%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1323415430%2FProperties%2F-1155457116" anchor-label="type" id="1323415430%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="type.html">type</a><span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>type</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-param/type.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param/type/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a>/<a href="type.html">type</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>type</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="type.html">type</a><span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>UndeclaredField</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/UndeclaredField/#kotlin.String#kotlin.reflect.KClass[*]/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="-undeclared-field.html">UndeclaredField</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Undeclared</span><wbr><span><span>Field</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-undeclared-field.html"><span class="token function">UndeclaredField</span></a><span class="token punctuation">(</span>field<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>field</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Name of the extra field to add to the model</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Class type of the field being added. If this is a complex type, you are most likely doing something wrong.</p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>clazz</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-undeclared-field/clazz.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/clazz/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="clazz.html">clazz</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>clazz</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="clazz.html">clazz</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>field</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-undeclared-field/field.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/field/#/PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="field.html">field</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>field</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="field.html">field</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,97 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>UndeclaredField</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/-undeclared-field/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Undeclared</span><wbr><span><span>Field</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">UndeclaredField</a><span class="token punctuation">(</span>field<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">This annotation allows users to add additional fields that are not part of the core data model. This should be used EXTREMELY sparingly. Most useful in supporting a variety of polymorphic serialization techniques.</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Parameters</h2>
|
||||||
|
<div data-togglable="Parameters">
|
||||||
|
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>field</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Name of the extra field to add to the model</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Class type of the field being added. If this is a complex type, you are most likely doing something wrong.</p></div></div></div></div></div></div></div></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="tabbedcontent">Constructors</h2>
|
||||||
|
<div class="table" data-togglable="Constructors"><a data-name="355700177%2FConstructors%2F-1155457116" anchor-label="UndeclaredField" id="355700177%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue TabbedContent">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-undeclared-field.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="355700177%2FConstructors%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-undeclared-field.html"><span class="token function">UndeclaredField</span></a><span class="token punctuation">(</span>field<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-1042563160%2FProperties%2F-1155457116" anchor-label="clazz" id="-1042563160%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="clazz.html">clazz</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1042563160%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1042563160%2FProperties%2F-1155457116" anchor-label="clazz" id="-1042563160%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="clazz.html">clazz</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1072028858%2FProperties%2F-1155457116" anchor-label="field" id="-1072028858%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="field.html">field</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1072028858%2FProperties%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1072028858%2FProperties%2F-1155457116" anchor-label="field" id="-1072028858%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="field.html">field</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,121 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>io.bkbn.kompendium.annotations</title>
|
||||||
|
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
|
||||||
|
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../styles/main.css" rel="Stylesheet"><link href="../../styles/prism.css" rel="Stylesheet"><link href="../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../scripts/main.js" defer></script><script type="text/javascript" src="../../scripts/prism.js" async></script><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.annotations/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="breadcrumbs"><a href="../index.html">kompendium-annotations</a>/<a href="index.html">io.bkbn.kompendium.annotations</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">Contains all annotations used by Kompendium</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Types</h2>
|
||||||
|
<div class="table" data-togglable="Types"><a data-name="-1854975086%2FClasslikes%2F-1155457116" anchor-label="Field" id="-1854975086%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-field/index.html"><span><span>Field</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1854975086%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-field/index.html">Field</a><span class="token punctuation">(</span>name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Annotation used to perform field level overrides.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1208061529%2FClasslikes%2F-1155457116" anchor-label="FreeFormObject" id="-1208061529%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1208061529%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-free-form-object/index.html">FreeFormObject</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="578058079%2FClasslikes%2F-1155457116" anchor-label="Param" id="578058079%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-param/index.html"><span><span>Param</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="578058079%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-param/index.html">Param</a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Used to indicate that a field in a data class represents an OpenAPI parameter</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-801323451%2FClasslikes%2F-1155457116" anchor-label="ParamType" id="-801323451%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-801323451%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-param-type/index.html">ParamType</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="-param-type/index.html">ParamType</a><span class="token operator">> </span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">The allowed parameter types as specified by the OpenAPI specification</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1687513979%2FClasslikes%2F-1155457116" anchor-label="UndeclaredField" id="-1687513979%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1687513979%2FClasslikes%2F-1155457116"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-undeclared-field/index.html">UndeclaredField</a><span class="token punctuation">(</span>field<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">This annotation allows users to add additional fields that are not part of the core data model. This should be used EXTREMELY sparingly. Most useful in supporting a variety of polymorphic serialization techniques.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
572
docs/2.0.1/kompendium-annotations/navigation.html
Normal file
@ -0,0 +1,572 @@
|
|||||||
|
<div class="sideMenu">
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu" pageid="kompendium-annotations::////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/index.html"><span><span>kompendium-annotations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html"><span><span>Field</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html"><span><span>Param</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-0-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html"><span><span>COOKIE</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html"><span><span>HEADER</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html"><span><span>PATH</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html"><span><span>QUERY</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html"><span><span>Format</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html"><span><span>Maximum</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html"><span><span>Minimum</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-6" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-7" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-8" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-9" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-10" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html"><span><span>Pattern</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-11" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu" pageid="kompendium-auth::////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/index.html"><span><span>kompendium-auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0" pageid="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0-0" pageid="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html"><span><span>Notarized</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-0" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-2" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-3" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-4" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu" pageid="kompendium-core::////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/index.html"><span><span>kompendium-core</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0" pageid="kompendium-core::io.bkbn.kompendium.core////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-0" pageid="kompendium-core::io.bkbn.kompendium.core/Kompendium///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium/index.html"><span><span>Kompendium</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-1" pageid="kompendium-core::io.bkbn.kompendium.core/KompendiumPreFlight///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium-pre-flight/index.html"><span>Kompendium</span><wbr><span>Pre</span><wbr><span><span>Flight</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-2" pageid="kompendium-core::io.bkbn.kompendium.core/Kontent///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kontent/index.html"><span><span>Kontent</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-3" pageid="kompendium-core::io.bkbn.kompendium.core/Notarized///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-notarized/index.html"><span><span>Notarized</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ExceptionInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-exception-info/index.html"><span>Exception</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ParameterExample///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-parameter-example/index.html"><span>Parameter</span><wbr><span><span>Example</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/RequestInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-request-info/index.html"><span>Request</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ResponseInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-response-info/index.html"><span>Response</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-2").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata.</span><wbr><span>method</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/DeleteInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-delete-info/index.html"><span>Delete</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/GetInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-get-info/index.html"><span>Get</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/HeadInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-head-info/index.html"><span>Head</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/MethodInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-method-info/index.html"><span>Method</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/OptionsInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-options-info/index.html"><span>Options</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-5" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PatchInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-patch-info/index.html"><span>Patch</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-6" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PostInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-post-info/index.html"><span>Post</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-7" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PutInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-put-info/index.html"><span>Put</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3" pageid="kompendium-core::io.bkbn.kompendium.core.parser////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.parser/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>parser</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-0" pageid="kompendium-core::io.bkbn.kompendium.core.parser/DefaultMethodParser///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-default-method-parser/index.html"><span>Default</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-1" pageid="kompendium-core::io.bkbn.kompendium.core.parser/IMethodParser///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-i-method-parser/index.html"><span>IMethod</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4" pageid="kompendium-core::io.bkbn.kompendium.core.routes////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-4").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.routes/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>routes</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-0" pageid="kompendium-core::io.bkbn.kompendium.core.routes//redoc/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/redoc.html"><span><span>redoc()</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5" pageid="kompendium-core::io.bkbn.kompendium.core.util////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-5").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.util/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>util</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-0" pageid="kompendium-core::io.bkbn.kompendium.core.util/Helpers///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.util/-helpers/index.html"><span><span>Helpers</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu" pageid="kompendium-locations::////PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-locations-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-locations/index.html"><span><span>kompendium-locations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0" pageid="kompendium-locations::io.bkbn.kompendium.locations////PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-locations-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-locations/io.bkbn.kompendium.locations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>locations</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-0" pageid="kompendium-locations::io.bkbn.kompendium.locations/LocationMethodParser///PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-location-method-parser/index.html"><span>Location</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-1" pageid="kompendium-locations::io.bkbn.kompendium.locations/NotarizedLocation///PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-notarized-location/index.html"><span>Notarized</span><wbr><span><span>Location</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu" pageid="kompendium-oas::////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/index.html"><span><span>kompendium-oas</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0" pageid="kompendium-oas::io.bkbn.kompendium.oas////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0-0" pageid="kompendium-oas::io.bkbn.kompendium.oas/OpenApiSpec///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html"><span>Open</span><wbr><span>Api</span><wbr><span><span>Spec</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.common/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>common</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/ExternalDocumentation///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html"><span>External</span><wbr><span><span>Documentation</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/Tag///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-tag/index.html"><span><span>Tag</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.component////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-2").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.component/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>component</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.component/Components///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.component/-components/index.html"><span><span>Components</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.info////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.info/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>info</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Contact///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-contact/index.html"><span><span>Contact</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Info///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-info/index.html"><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/License///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-license/index.html"><span><span>License</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.path////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-4").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.path/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>path</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/Path///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path/index.html"><span><span>Path</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/PathOperation///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path-operation/index.html"><span>Path</span><wbr><span><span>Operation</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-5").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>payload</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/AnyOfPayload///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-any-of-payload/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Payload</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/MediaType///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-media-type/index.html"><span>Media</span><wbr><span><span>Type</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Parameter///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html"><span><span>Parameter</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Payload///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-payload/index.html"><span><span>Payload</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Request///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-request/index.html"><span><span>Request</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Response///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-response/index.html"><span><span>Response</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-6").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>schema</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/AnyOfSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-any-of-schema/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ArraySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-array-schema/index.html"><span>Array</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ComponentSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html"><span>Component</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/DictionarySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-dictionary-schema/index.html"><span>Dictionary</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/EnumSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-enum-schema/index.html"><span>Enum</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FormattedSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-formatted-schema/index.html"><span>Formatted</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FreeFormSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-free-form-schema/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ObjectSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html"><span>Object</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/SimpleSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-simple-schema/index.html"><span>Simple</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/TypedSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-typed-schema/index.html"><span>Typed</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.security////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-7").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.security/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>security</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/ApiKeyAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BasicAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-basic-auth/index.html"><span>Basic</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BearerAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-bearer-auth/index.html"><span>Bearer</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/OAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/index.html"><span><span>OAuth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/SecuritySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-security-schema/index.html"><span>Security</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-8").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span><span>serialization</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/AnySerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-any-serializer/index.html"><span>Any</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/KompendiumSerializersModule///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-kompendium-serializers-module/index.html"><span>Kompendium</span><wbr><span>Serializers</span><wbr><span><span>Module</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/NumberSerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-number-serializer/index.html"><span>Number</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/UriSerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-uri-serializer/index.html"><span>Uri</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.server////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-9").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.server/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>server</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/Server///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server/index.html"><span><span>Server</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/ServerVariable///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server-variable/index.html"><span>Server</span><wbr><span><span>Variable</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu" pageid="kompendium-swagger-ui::////PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-swagger-ui-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/index.html"><span><span>kompendium-swagger-ui</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger////PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-swagger-ui-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>swagger</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger//swaggerUI/io.ktor.routing.Routing#kotlin.String/PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/swagger-u-i.html"><span>swagger</span><wbr><span><span>UI()</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
71
docs/2.0.1/kompendium-auth/index.html
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>kompendium-auth</title>
|
||||||
|
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
|
||||||
|
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../styles/main.css" rel="Stylesheet"><link href="../styles/prism.css" rel="Stylesheet"><link href="../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../scripts/clipboard.js" async></script><script type="text/javascript" src="../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../scripts/main.js" defer></script><script type="text/javascript" src="../scripts/prism.js" async></script><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::////PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>kompendium-auth</span></span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><p class="paragraph">This module is responsible for providing wrappers around ktor-auth configuration blocks, allowing users to document their API authentication with minimal modifications to their existing configuration.</p></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Packages</h2>
|
||||||
|
<div class="table"><a data-name="250592570%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth" id="250592570%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.auth/index.html">io.bkbn.kompendium.auth</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="250592570%2FPackages%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="250592570%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth" id="250592570%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Base package that is responsible for setting up required authentication route handlers along with exposing wrapper methods for each ktor-auth authentication mechanism.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1419831102%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth.configuration" id="-1419831102%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.auth.configuration/index.html">io.bkbn.kompendium.auth.configuration</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1419831102%2FPackages%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,91 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>ApiKeyConfiguration</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">ApiKeyConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1878373280%2FProperties%2F23619058" anchor-label="keyName" id="1878373280%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="key-name.html">keyName</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1878373280%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1878373280%2FProperties%2F23619058" anchor-label="keyName" id="1878373280%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="key-name.html">keyName</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="2117830939%2FProperties%2F23619058" anchor-label="location" id="2117830939%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="location.html">location</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2117830939%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="2117830939%2FProperties%2F23619058" anchor-label="location" id="2117830939%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="location.html">location</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/-api-key-location/index.html">ApiKeyAuth.ApiKeyLocation</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-security-configuration/name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>keyName</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration/keyName/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a>/<a href="key-name.html">keyName</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>key</span><wbr><span><span>Name</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="key-name.html">keyName</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>location</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration/location/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a>/<a href="location.html">location</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>location</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="location.html">location</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/-api-key-location/index.html">ApiKeyAuth.ApiKeyLocation</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>BasicAuthConfiguration</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">BasicAuthConfiguration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">BasicAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-security-configuration/name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>bearerFormat</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration/bearerFormat/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">JwtAuthConfiguration</a>/<a href="bearer-format.html">bearerFormat</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>bearer</span><wbr><span><span>Format</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="bearer-format.html">bearerFormat</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>JwtAuthConfiguration</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">JwtAuthConfiguration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">JwtAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1007961548%2FProperties%2F23619058" anchor-label="bearerFormat" id="1007961548%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="bearer-format.html">bearerFormat</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1007961548%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1007961548%2FProperties%2F23619058" anchor-label="bearerFormat" id="1007961548%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="bearer-format.html">bearerFormat</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-security-configuration/name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>description</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration/description/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a>/<a href="description.html">description</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>description</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>flows</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration/flows/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a>/<a href="flows.html">flows</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>flows</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="flows.html">flows</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/-flows/index.html">OAuth.Flows</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,91 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>OAuthConfiguration</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>OAuth</span><wbr><span><span>Configuration</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">OAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="-68600190%2FProperties%2F23619058" anchor-label="description" id="-68600190%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="description.html">description</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-68600190%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="-68600190%2FProperties%2F23619058" anchor-label="description" id="-68600190%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-23630247%2FProperties%2F23619058" anchor-label="flows" id="-23630247%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="flows.html">flows</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-23630247%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="-23630247%2FProperties%2F23619058" anchor-label="flows" id="-23630247%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="flows.html">flows</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/-flows/index.html">OAuth.Flows</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-security-configuration/name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,107 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>SecurityConfiguration</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-security-configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">SecurityConfiguration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Security</span><wbr><span><span>Configuration</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Inheritors">Inheritors</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table" data-togglable="Properties"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="name.html">name</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Inheritors</h2>
|
||||||
|
<div class="table" data-togglable="Inheritors"><a data-name="197760559%2FInheritors%2F23619058" anchor-label="ApiKeyConfiguration" id="197760559%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-api-key-configuration/index.html">ApiKeyConfiguration</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="197760559%2FInheritors%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1947561026%2FInheritors%2F23619058" anchor-label="BasicAuthConfiguration" id="1947561026%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-basic-auth-configuration/index.html">BasicAuthConfiguration</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1947561026%2FInheritors%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-2142921253%2FInheritors%2F23619058" anchor-label="JwtAuthConfiguration" id="-2142921253%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-jwt-auth-configuration/index.html">JwtAuthConfiguration</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2142921253%2FInheritors%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-346409021%2FInheritors%2F23619058" anchor-label="OAuthConfiguration" id="-346409021%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="../-o-auth-configuration/index.html">OAuthConfiguration</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-346409021%2FInheritors%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>name</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/-security-configuration/name.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration/name/#/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">SecurityConfiguration</a>/<a href="name.html">name</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>name</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,120 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>io.bkbn.kompendium.auth.configuration</title>
|
||||||
|
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
|
||||||
|
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../styles/main.css" rel="Stylesheet"><link href="../../styles/prism.css" rel="Stylesheet"><link href="../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../scripts/main.js" defer></script><script type="text/javascript" src="../../scripts/prism.js" async></script><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth.configuration/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../index.html">kompendium-auth</a>/<a href="index.html">io.bkbn.kompendium.auth.configuration</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Types</h2>
|
||||||
|
<div class="table" data-togglable="Types"><a data-name="197760559%2FClasslikes%2F23619058" anchor-label="ApiKeyConfiguration" id="197760559%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="197760559%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-api-key-configuration/index.html">ApiKeyConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1947561026%2FClasslikes%2F23619058" anchor-label="BasicAuthConfiguration" id="1947561026%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1947561026%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-basic-auth-configuration/index.html">BasicAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-2142921253%2FClasslikes%2F23619058" anchor-label="JwtAuthConfiguration" id="-2142921253%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2142921253%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-jwt-auth-configuration/index.html">JwtAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-346409021%2FClasslikes%2F23619058" anchor-label="OAuthConfiguration" id="-346409021%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-346409021%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-o-auth-configuration/index.html">OAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1010289782%2FClasslikes%2F23619058" anchor-label="SecurityConfiguration" id="-1010289782%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1010289782%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>Notarized</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth/-notarized/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth</a>/<a href="index.html">Notarized</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>Notarized</span></span></h1>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Notarized</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Functions">Functions</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Functions</h2>
|
||||||
|
<div class="table" data-togglable="Functions"><a data-name="-1273114746%2FFunctions%2F23619058" anchor-label="notarizedAuthenticate" id="-1273114746%2FFunctions%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="notarized-authenticate.html"><span>notarized</span><wbr><span><span>Authenticate</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1273114746%2FFunctions%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><a href="notarized-authenticate.html"><span class="token function">notarizedAuthenticate</span></a><span class="token punctuation">(</span><span class="token keyword">vararg </span>configurations<span class="token operator">: </span><a href="../../io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">SecurityConfiguration</a><span class="token punctuation">, </span>optional<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">, </span>build<span class="token operator">: </span><span class="token keyword"></span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator"> -> </span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>notarizedAuthenticate</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth/Notarized/notarizedAuthenticate/io.ktor.routing.Route#kotlin.Array[io.bkbn.kompendium.auth.configuration.SecurityConfiguration]#kotlin.Boolean#kotlin.Function1[io.ktor.routing.Route,kotlin.Unit]/PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth</a>/<a href="index.html">Notarized</a>/<a href="notarized-authenticate.html">notarizedAuthenticate</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>notarized</span><wbr><span><span>Authenticate</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><a href="notarized-authenticate.html"><span class="token function">notarizedAuthenticate</span></a><span class="token punctuation">(</span><span class="token keyword">vararg </span>configurations<span class="token operator">: </span><a href="../../io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">SecurityConfiguration</a><span class="token punctuation">, </span>optional<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">, </span>build<span class="token operator">: </span><span class="token keyword"></span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator"> -> </span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,61 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>io.bkbn.kompendium.auth</title>
|
||||||
|
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
|
||||||
|
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../styles/main.css" rel="Stylesheet"><link href="../../styles/prism.css" rel="Stylesheet"><link href="../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../scripts/main.js" defer></script><script type="text/javascript" src="../../scripts/prism.js" async></script><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.auth/index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
|
||||||
|
<div class="breadcrumbs"><a href="../index.html">kompendium-auth</a>/<a href="index.html">io.bkbn.kompendium.auth</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><p class="paragraph">Base package that is responsible for setting up required authentication route handlers along with exposing wrapper methods for each ktor-auth authentication mechanism.</p><p class="paragraph">Houses the available security configurations. At the moment, <code class="lang-kotlin">Basic</code>, <code class="lang-kotlin">JWT</code>, <code class="lang-kotlin">ApiKey</code>, and <code class="lang-kotlin">OAuth</code> are supported</p></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="tabbedcontent">
|
||||||
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
|
||||||
|
<div class="tabs-section-body">
|
||||||
|
<h2 class="">Types</h2>
|
||||||
|
<div class="table" data-togglable="Types"><a data-name="2014158356%2FClasslikes%2F23619058" anchor-label="Notarized" id="2014158356%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="-notarized/index.html"><span><span>Notarized</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2014158356%2FClasslikes%2F23619058"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="-notarized/index.html">Notarized</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
572
docs/2.0.1/kompendium-auth/navigation.html
Normal file
@ -0,0 +1,572 @@
|
|||||||
|
<div class="sideMenu">
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu" pageid="kompendium-annotations::////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/index.html"><span><span>kompendium-annotations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html"><span><span>Field</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html"><span><span>Param</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-0-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html"><span><span>COOKIE</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html"><span><span>HEADER</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html"><span><span>PATH</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html"><span><span>QUERY</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-annotations-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html"><span><span>Format</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html"><span><span>Maximum</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html"><span><span>Minimum</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-6" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-7" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-8" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-9" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-10" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html"><span><span>Pattern</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-11" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu" pageid="kompendium-auth::////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/index.html"><span><span>kompendium-auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0" pageid="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0-0" pageid="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html"><span><span>Notarized</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-auth-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-0" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-2" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-3" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-4" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu" pageid="kompendium-core::////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/index.html"><span><span>kompendium-core</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0" pageid="kompendium-core::io.bkbn.kompendium.core////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-0" pageid="kompendium-core::io.bkbn.kompendium.core/Kompendium///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium/index.html"><span><span>Kompendium</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-1" pageid="kompendium-core::io.bkbn.kompendium.core/KompendiumPreFlight///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium-pre-flight/index.html"><span>Kompendium</span><wbr><span>Pre</span><wbr><span><span>Flight</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-2" pageid="kompendium-core::io.bkbn.kompendium.core/Kontent///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-kontent/index.html"><span><span>Kontent</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-3" pageid="kompendium-core::io.bkbn.kompendium.core/Notarized///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core/-notarized/index.html"><span><span>Notarized</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ExceptionInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-exception-info/index.html"><span>Exception</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ParameterExample///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-parameter-example/index.html"><span>Parameter</span><wbr><span><span>Example</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/RequestInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-request-info/index.html"><span>Request</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ResponseInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-response-info/index.html"><span>Response</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-2").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata.</span><wbr><span>method</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/DeleteInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-delete-info/index.html"><span>Delete</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/GetInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-get-info/index.html"><span>Get</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/HeadInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-head-info/index.html"><span>Head</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/MethodInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-method-info/index.html"><span>Method</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/OptionsInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-options-info/index.html"><span>Options</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-5" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PatchInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-patch-info/index.html"><span>Patch</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-6" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PostInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-post-info/index.html"><span>Post</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-7" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PutInfo///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-put-info/index.html"><span>Put</span><wbr><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3" pageid="kompendium-core::io.bkbn.kompendium.core.parser////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.parser/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>parser</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-0" pageid="kompendium-core::io.bkbn.kompendium.core.parser/DefaultMethodParser///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-default-method-parser/index.html"><span>Default</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-1" pageid="kompendium-core::io.bkbn.kompendium.core.parser/IMethodParser///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-i-method-parser/index.html"><span>IMethod</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4" pageid="kompendium-core::io.bkbn.kompendium.core.routes////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-4").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.routes/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>routes</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-0" pageid="kompendium-core::io.bkbn.kompendium.core.routes//redoc/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/redoc.html"><span><span>redoc()</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5" pageid="kompendium-core::io.bkbn.kompendium.core.util////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-core-nav-submenu-5").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.util/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>util</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-0" pageid="kompendium-core::io.bkbn.kompendium.core.util/Helpers///PointingToDeclaration//-1397293861">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-core/io.bkbn.kompendium.core.util/-helpers/index.html"><span><span>Helpers</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu" pageid="kompendium-locations::////PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-locations-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-locations/index.html"><span><span>kompendium-locations</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0" pageid="kompendium-locations::io.bkbn.kompendium.locations////PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-locations-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-locations/io.bkbn.kompendium.locations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>locations</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-0" pageid="kompendium-locations::io.bkbn.kompendium.locations/LocationMethodParser///PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-location-method-parser/index.html"><span>Location</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-1" pageid="kompendium-locations::io.bkbn.kompendium.locations/NotarizedLocation///PointingToDeclaration//-730534806">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-notarized-location/index.html"><span>Notarized</span><wbr><span><span>Location</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu" pageid="kompendium-oas::////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/index.html"><span><span>kompendium-oas</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0" pageid="kompendium-oas::io.bkbn.kompendium.oas////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0-0" pageid="kompendium-oas::io.bkbn.kompendium.oas/OpenApiSpec///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html"><span>Open</span><wbr><span>Api</span><wbr><span><span>Spec</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-1").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.common/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>common</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/ExternalDocumentation///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html"><span>External</span><wbr><span><span>Documentation</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/Tag///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-tag/index.html"><span><span>Tag</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.component////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-2").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.component/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>component</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.component/Components///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.component/-components/index.html"><span><span>Components</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.info////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-3").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.info/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>info</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Contact///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-contact/index.html"><span><span>Contact</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Info///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-info/index.html"><span><span>Info</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/License///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-license/index.html"><span><span>License</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.path////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-4").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.path/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>path</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/Path///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path/index.html"><span><span>Path</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/PathOperation///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path-operation/index.html"><span>Path</span><wbr><span><span>Operation</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-5").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>payload</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/AnyOfPayload///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-any-of-payload/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Payload</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/MediaType///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-media-type/index.html"><span>Media</span><wbr><span><span>Type</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Parameter///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html"><span><span>Parameter</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Payload///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-payload/index.html"><span><span>Payload</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Request///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-request/index.html"><span><span>Request</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Response///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-response/index.html"><span><span>Response</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-6").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>schema</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/AnyOfSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-any-of-schema/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ArraySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-array-schema/index.html"><span>Array</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ComponentSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html"><span>Component</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/DictionarySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-dictionary-schema/index.html"><span>Dictionary</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/EnumSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-enum-schema/index.html"><span>Enum</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FormattedSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-formatted-schema/index.html"><span>Formatted</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FreeFormSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-free-form-schema/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ObjectSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html"><span>Object</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/SimpleSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-simple-schema/index.html"><span>Simple</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/TypedSchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-typed-schema/index.html"><span>Typed</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.security////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-7").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.security/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>security</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/ApiKeyAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BasicAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-basic-auth/index.html"><span>Basic</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BearerAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-bearer-auth/index.html"><span>Bearer</span><wbr><span><span>Auth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/OAuth///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/index.html"><span><span>OAuth</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/SecuritySchema///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-security-schema/index.html"><span>Security</span><wbr><span><span>Schema</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-8").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span><span>serialization</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/AnySerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-any-serializer/index.html"><span>Any</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/KompendiumSerializersModule///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-kompendium-serializers-module/index.html"><span>Kompendium</span><wbr><span>Serializers</span><wbr><span><span>Module</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/NumberSerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-number-serializer/index.html"><span>Number</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/UriSerializer///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-uri-serializer/index.html"><span>Uri</span><wbr><span><span>Serializer</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.server////PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-oas-nav-submenu-9").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.server/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>server</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/Server///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server/index.html"><span><span>Server</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/ServerVariable///PointingToDeclaration//218983047">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server-variable/index.html"><span>Server</span><wbr><span><span>Variable</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu" pageid="kompendium-swagger-ui::////PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-swagger-ui-nav-submenu").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/index.html"><span><span>kompendium-swagger-ui</span></span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger////PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<span class="navButton" onclick="document.getElementById("kompendium-swagger-ui-nav-submenu-0").classList.toggle("hidden");"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>swagger</span></a>
|
||||||
|
</div>
|
||||||
|
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger//swaggerUI/io.ktor.routing.Routing#kotlin.String/PointingToDeclaration//-1695985917">
|
||||||
|
<div class="overview">
|
||||||
|
<a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/swagger-u-i.html"><span>swagger</span><wbr><span><span>UI()</span></span></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
135
docs/2.0.1/kompendium-core/index.html
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>kompendium-core</title>
|
||||||
|
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
|
||||||
|
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../styles/main.css" rel="Stylesheet"><link href="../styles/prism.css" rel="Stylesheet"><link href="../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../scripts/clipboard.js" async></script><script type="text/javascript" src="../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../scripts/main.js" defer></script><script type="text/javascript" src="../scripts/prism.js" async></script><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"index.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-core::////PointingToDeclaration//-1397293861">
|
||||||
|
<div class="breadcrumbs"></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span><span>kompendium-core</span></span></h1>
|
||||||
|
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><p class="paragraph">This is where the magic happens. This module houses all the reflective goodness that powers Kompendium.</p><p class="paragraph">It is also the only mandatory client-facing module for a basic setup.</p></div></div>
|
||||||
|
</div>
|
||||||
|
<h2 class="">Packages</h2>
|
||||||
|
<div class="table"><a data-name="-1965787023%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core" id="-1965787023%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core/index.html">io.bkbn.kompendium.core</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1965787023%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="-1965787023%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core" id="-1965787023%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">The root package contains several objects that power Kompendium, including the Kompendium Ktor Plugin, route notarization methods, and the reflection engine that analyzes method info type parameters.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="327945552%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata" id="327945552%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core.metadata/index.html">io.bkbn.kompendium.core.metadata</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="327945552%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="327945552%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata" id="327945552%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Houses all interfaces and types related to describing route metadata.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-286179709%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata.method" id="-286179709%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core.metadata.method/index.html">io.bkbn.kompendium.core.metadata.method</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-286179709%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="2092496384%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.parser" id="2092496384%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core.parser/index.html">io.bkbn.kompendium.core.parser</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2092496384%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="2092496384%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.parser" id="2092496384%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Responsible for the parse of method information. Base implementation is an interface to support extensibility as shown in the <code class="lang-kotlin">kompendium-locations</code> module.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="377184619%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.routes" id="377184619%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core.routes/index.html">io.bkbn.kompendium.core.routes</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="377184619%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="377184619%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.routes" id="377184619%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Houses any routes provided by the core module. At the moment the only supported route is to enable ReDoc support.</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-1975113757%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.util" id="-1975113757%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
|
||||||
|
<div>
|
||||||
|
<div class="main-subrow ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="io.bkbn.kompendium.core.util/index.html">io.bkbn.kompendium.core.util</a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1975113757%2FPackages%2F-1397293861"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div class="pull-right"></div>
|
||||||
|
</div>
|
||||||
|
<div><span class="brief-comment"><a data-name="-1975113757%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.util" id="-1975113757%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
|
||||||
|
<p class="paragraph">Collection of utility functions used by Kompendium</p>
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
|
||||||
|
<title>DeleteInfo</title>
|
||||||
|
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
|
||||||
|
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script><script type="text/javascript" src="../../../scripts/main.js" defer></script><script type="text/javascript" src="../../../scripts/prism.js" async></script><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
|
||||||
|
const savedDarkMode = storage ? JSON.parse(storage) : false
|
||||||
|
if(savedDarkMode === true){
|
||||||
|
document.getElementsByTagName("html")[0].classList.add("theme-dark")
|
||||||
|
}</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navigation-wrapper" id="navigation-wrapper">
|
||||||
|
<div id="leftToggler"><span class="icon-toggler"></span></div>
|
||||||
|
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
|
||||||
|
<div><dokka-template-command data="{"@class":"org.jetbrains.dokka.base.templating.ReplaceVersionsCommand","location":"io.bkbn.kompendium.core.metadata.method/-delete-info/-delete-info.html"}">2.0.1</dokka-template-command></div>
|
||||||
|
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
|
||||||
|
<div id="searchBar"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="leftColumn">
|
||||||
|
<div id="sideMenu"></div>
|
||||||
|
</div>
|
||||||
|
<div id="main">
|
||||||
|
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.metadata.method/DeleteInfo/DeleteInfo/#io.bkbn.kompendium.core.metadata.ResponseInfo[TypeParam(bounds=[kotlin.Any?])]#kotlin.String#kotlin.String?#kotlin.collections.Set[kotlin.String]#kotlin.Boolean#kotlin.collections.Set[kotlin.String]#kotlin.collections.Set[io.bkbn.kompendium.core.metadata.ExceptionInfo[*]]#kotlin.collections.Set[io.bkbn.kompendium.core.metadata.ParameterExample]#kotlin.String?/PointingToDeclaration//-1397293861">
|
||||||
|
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a>/<a href="../index.html">io.bkbn.kompendium.core.metadata.method</a>/<a href="index.html">DeleteInfo</a>/<a href="-delete-info.html">DeleteInfo</a></div>
|
||||||
|
<div class="cover ">
|
||||||
|
<h1 class="cover"><span>Delete</span><wbr><span><span>Info</span></span></h1>
|
||||||
|
</div>
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">TResp</a><span class="token operator">> </span><a href="-delete-info.html"><span class="token function">DeleteInfo</span></a><span class="token punctuation">(</span>responseInfo<span class="token operator">: </span><a href="../../io.bkbn.kompendium.core.metadata/-response-info/index.html">ResponseInfo</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">TResp</a><span class="token operator">></span><span class="token punctuation">, </span>summary<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="token operator"> = </span>null<span class="token punctuation">, </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">></span><span class="token operator"> = </span>emptySet()<span class="token punctuation">, </span>deprecated<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">, </span>securitySchemes<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">></span><span class="token operator"> = </span>emptySet()<span class="token punctuation">, </span>canThrow<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator"><</span><span class="token keyword"></span><a href="../../io.bkbn.kompendium.core.metadata/-exception-info/index.html">ExceptionInfo</a><span class="token operator"><</span><span class="token operator">*</span><span class="token operator">></span><span class="token operator">></span><span class="token operator"> = </span>emptySet()<span class="token punctuation">, </span>parameterExamples<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator"><</span><span class="token keyword"></span><a href="../../io.bkbn.kompendium.core.metadata/-parameter-example/index.html">ParameterExample</a><span class="token operator">></span><span class="token operator"> = </span>emptySet()<span class="token punctuation">, </span>operationId<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="token operator"> = </span>null<span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
||||||
|
|