
com.linecorp.kotlinjdsl.Internal.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jdsl Show documentation
Show all versions of kotlin-jdsl Show documentation
Kotlin library that makes it easy to build and execute queries without generated metamodel.
package com.linecorp.kotlinjdsl
/**
* Marks declarations that are **internal** in JDSL API, which means that should not be used outside of
* `com.linecorp.kotlinjdsl`, because their signatures and semantics will change between future releases without any
* warnings and without providing any migration aids.
*/
@Target(
AnnotationTarget.CLASS,
AnnotationTarget.PROPERTY,
AnnotationTarget.FIELD,
AnnotationTarget.CONSTRUCTOR,
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY_GETTER,
AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.TYPEALIAS,
)
@Retention(AnnotationRetention.BINARY)
@MustBeDocumented
annotation class Internal
© 2015 - 2025 Weber Informatics LLC | Privacy Policy