Uses of Class
javax.lang.model.type.TypeKind
-
Packages that use TypeKind 软件包 描述 com.sun.source.tree 提供用于将源代码表示为抽象语法树(AST)的接口。javax.lang.model.type 用于建模Java编程语言类型的接口。javax.lang.model.util 协助处理 program elements及 types的公用事业 。 -
-
Uses of TypeKind in com.sun.source.tree
Methods in com.sun.source.tree that return TypeKind Modifier and Type 方法 描述 TypeKind
PrimitiveTypeTree. getPrimitiveTypeKind()
返回此类型的原始类型。 -
Uses of TypeKind in javax.lang.model.type
Methods in javax.lang.model.type that return TypeKind Modifier and Type 方法 描述 TypeKind
TypeMirror. getKind()
返回此类型的kind
。static TypeKind
TypeKind. valueOf(String name)
以指定的名称返回此类型的枚举常量。static TypeKind[]
TypeKind. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 -
Uses of TypeKind in javax.lang.model.util
Methods in javax.lang.model.util with parameters of type TypeKind Modifier and Type 方法 描述 NoType
Types. getNoType(TypeKind kind)
返回在没有实际类型适用的情况下使用的伪类型。PrimitiveType
Types. getPrimitiveType(TypeKind kind)
返回一个原始类型。
-