com.mostlycertain.javapoetdsl.jsr305.Annotations.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javapoet-dsl Show documentation
Show all versions of javapoet-dsl Show documentation
Kotlin DSL wrapper for the JavaPoet Java code generation library
package com.mostlycertain.javapoetdsl.jsr305
import com.mostlycertain.javapoetdsl.Annotations
object Annotations {
val IMMUTABLE = Annotations.of(TypeNames.IMMUTABLE)
val CHECK_RETURN_VALUE = Annotations.of(TypeNames.CHECK_RETURN_VALUE)
val PARAMETERS_ARE_NONNULL_BY_DEFAULT = Annotations.of(TypeNames.PARAMETERS_ARE_NONNULL_BY_DEFAULT)
val NULLABLE = Annotations.of(TypeNames.NULLABLE)
val NONNULL = Annotations.of(TypeNames.NONNULL)
}