类 KotlinTypeFlags
- java.lang.Object
-
- proguard.classfile.kotlin.flags.KotlinTypeFlags
-
- 所有已实现的接口:
KotlinFlags
public class KotlinTypeFlags extends java.lang.Object implements KotlinFlags
Flags for Kotlin types.
-
-
字段概要
字段 修饰符和类型 字段 说明 booleanisDefinitelyNonNullSignifies that the corresponding type is [definitely non-null](https://kotlinlang.org/docs/whatsnew17.html#stable-definitely-non-nullable-types).booleanisNullableSignifies that the corresponding type is marked as nullable, i.e. has a question mark at the end of its notation.booleanisSuspendSignifies that the corresponding type is `suspend`.
-
构造器概要
构造器 构造器 说明 KotlinTypeFlags()
-
-
-
字段详细资料
-
isNullable
public boolean isNullable
Signifies that the corresponding type is marked as nullable, i.e. has a question mark at the end of its notation.
-
isDefinitelyNonNull
public boolean isDefinitelyNonNull
Signifies that the corresponding type is [definitely non-null](https://kotlinlang.org/docs/whatsnew17.html#stable-definitely-non-nullable-types).
-
isSuspend
public boolean isSuspend
Signifies that the corresponding type is `suspend`.
-
-