Enum JvmTypeKind
- Namespace
- TypedRest.CodeGeneration.Jvm.Model
- Assembly
- TypedRest.CodeGeneration.Jvm.dll
The kinds of type a JvmIdentifier can refer to, limited to the distinctions the writers act on.
public enum JvmTypeKind
Fields
Boolean = 4A boolean.
Class = 0An ordinary class or interface.
Double = 3A double-precision float.
Int = 1A 32-bit integer, written
Intin Kotlin andInteger/intin Java.List = 6A
java.util.List.Long = 2A 64-bit integer, written
Longin both but boxed differently in Java.Map = 7A
java.util.Map.Object = 5The root type, written
Anyin Kotlin andObjectin Java.