-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Suggestion to clarify documentation:
Please note:
When using Enums defined inside a Class they have to be specified on the property including the Class name
class EnumEntity: Entity {
enum TestEnum: Int {
case unknown = 0
case first = 100
case second = 200
case third = 300
}
var id: Id = 0
// objectbox: convert = { "default": ".unknown" }
var custom: EnumEntity.TestEnum
}
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation