注释接口 NullableType


@Retention(CLASS) @Target(TYPE_USE) public @interface NullableType
Java-only annotation This type is unnecessary for kotlin, pelase use `?` of kotlin, like this

List<String?>

However,it is useful for java, for example

List<@NullableType String>