类 KotlinTypeFlags

  • 所有已实现的接口:
    KotlinFlags

    public class KotlinTypeFlags
    extends java.lang.Object
    implements KotlinFlags
    Flags for Kotlin types.
    • 字段概要

      字段 
      修饰符和类型 字段 说明
      boolean isDefinitelyNonNull
      Signifies that the corresponding type is [definitely non-null](https://kotlinlang.org/docs/whatsnew17.html#stable-definitely-non-nullable-types).
      boolean isNullable
      Signifies that the corresponding type is marked as nullable, i.e. has a question mark at the end of its notation.
      boolean isSuspend
      Signifies that the corresponding type is `suspend`.
    • 方法概要

      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 字段详细资料

      • 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`.
    • 构造器详细资料

      • KotlinTypeFlags

        public KotlinTypeFlags()