[docs] Add missing JavaDocs (#6146)

This commit is contained in:
Tyler Veness
2024-01-04 08:38:06 -08:00
committed by GitHub
parent 6e58db398d
commit f29a7d2e50
145 changed files with 1106 additions and 94 deletions

View File

@@ -32,18 +32,31 @@ class StructDescriptorDatabase;
* Known data types for raw struct dynamic fields (see StructFieldDescriptor).
*/
enum class StructFieldType {
/// bool.
kBool,
/// char.
kChar,
/// int8.
kInt8,
/// int16.
kInt16,
/// int32.
kInt32,
/// int64.
kInt64,
/// uint8.
kUint8,
/// uint16.
kUint16,
/// uint32.
kUint32,
/// uint64.
kUint64,
/// float.
kFloat,
/// double.
kDouble,
/// struct.
kStruct
};