Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e99bc6ea0fdc4e69d24e4f687c4bf2d58c69880c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
RoomModel room.basic.types.java {

	PrimitiveType boolean -> int32 (Boolean) default "false"
	PrimitiveType char -> char (Char) default "0"
	PrimitiveType int8 -> byte (Byte) default "0"
	PrimitiveType int16 -> short (Short) default "0"
	PrimitiveType int32 -> int (Integer) default "0"
	PrimitiveType int64 -> long (Long) default "0"
	PrimitiveType float32 -> float (Float) default "0"
	PrimitiveType float64 -> double (Double) default "0"
	ExternalType string -> String
	
}

Back to the top