Package org.pkl.core.util
Annotation Type LateInit
-
@Target(FIELD) @Retention(RUNTIME) @Nonnull(when=UNKNOWN) @TypeQualifierNickname public @interface LateInitIndicates that the annotated field is initiallynulland initialized to a non-null value before or upon first use. Corresponds tolateinitin Kotlin (but does not result in automatic runtime non-null checks).Note: Fields that are initialized late to a nullable value should only be annotated with
Nullable(same as in Kotlin).