1
1
.. include :: refs.rst
2
2
3
- =====
4
- Usage
5
- =====
3
+ ======
4
+ How To
5
+ ======
6
6
7
7
:class: `~django_enum.fields.EnumField ` inherits from the appropriate native Django _ field and sets
8
- the correct choice tuple set based on the enumeration type. This means `` EnumFields `` are
9
- compatible with all modules, utilities and libraries that fields defined with a choice tuple are.
10
- For example:
8
+ the correct choice tuple set based on the enumeration type. This means
9
+ :class: ` ~django_enum.fields.EnumField ` are compatible with all modules, utilities and libraries
10
+ that fields defined with a choice tuple are. For example:
11
11
12
12
.. code :: python
13
13
@@ -65,13 +65,15 @@ simple declarative syntax are possible with :class:`~django_enum.fields.EnumFiel
65
65
External Enum Types
66
66
###################
67
67
68
- Enum _ classes defined externally to your code base or enum classes that otherwise do not inherit
69
- from Django's Choices _ type, are supported. When no choices are present on an Enum _ type,
70
- :class: `~django_enum.fields.EnumField ` will attempt to use the ``label `` member on each
71
- enumeration value if it is present, otherwise the labels will be based off the enumeration name.
72
- Choices can also be overridden at the :class: `~django_enum.fields.EnumField ` declaration.
68
+ :class: `enum.Enum ` classes defined externally to your code base or enum classes that otherwise do
69
+ not inherit from Django's :ref: `field-choices-enum-types `, are supported. When no choices are
70
+ present on an :class: `enum.Enum ` type, :class: `~django_enum.fields.EnumField ` will attempt to use
71
+ the ``label `` member on each enumeration value if it is present, otherwise the labels will be based
72
+ off the enumeration name. Choices can also be overridden at the
73
+ :class: `~django_enum.fields.EnumField ` declaration.
73
74
74
- In short, :class: `~django_enum.fields.EnumField ` should work with any subclass of Enum _.
75
+ In short, :class: `~django_enum.fields.EnumField ` should work with any subclass of
76
+ :class: `enum.Enum `.
75
77
76
78
.. code :: python
77
79
@@ -93,8 +95,8 @@ The above code will produce a choices set like ``[('V0', 'VALUE0'), ...]``.
93
95
94
96
.. warning ::
95
97
96
- One nice feature of Django' s Choices_ type is that it disables
97
- `` auto()`` on Enum_ fields. `` auto()`` can be dangerous because the
98
+ One nice feature of Django' s :ref:`field-choices-enum-types` are that they disable
99
+ `` auto()`` on : class : `enum.Enum` fields. `` auto()`` can be dangerous because the
98
100
values assigned depend on the order of declaration. This means that if the
99
101
order changes existing database values will no longer align with the
100
102
enumeration values. When using `` Enums`` where control over the values is
@@ -114,15 +116,16 @@ The following :class:`~django_enum.fields.EnumField` specific parameters are ava
114
116
``strict ``
115
117
----------
116
118
117
- By default all ``EnumFields `` are ``strict ``. This means a ``ValidationError ``
118
- will be thrown anytime full_clean is run on a model and a value is set for the
119
- field that can not be coerced to its native Enum _ type. To allow the field
120
- to store values that are not present in the fields Enum _ type we can pass
119
+ By default all :class: `~django_enum.fields.EnumField ` are ``strict ``. This means a
120
+ :exc: `~django.core.exceptions.ValidationError ` will be thrown anytime
121
+ :meth: `django.db.models.Model.full_clean ` is run on a model and a value is set for the
122
+ field that can not be coerced to its native :class: `enum.Enum ` type. To allow the field
123
+ to store values that are not present in the fields :class: `enum.Enum ` type we can pass
121
124
`strict=False `.
122
125
123
126
Non-strict fields that have values outside of the enumeration will be instances
124
- of the enumeration where a valid Enum _ value is present and the plain old
125
- data where no Enum _ type coercion is possible.
127
+ of the enumeration where a valid :class: ` enum.Enum ` value is present and the plain old
128
+ data where no :class: ` enum.Enum ` type coercion is possible.
126
129
127
130
.. code-block :: python
128
131
@@ -157,11 +160,10 @@ data where no Enum_ type coercion is possible.
157
160
``constrained ``
158
161
---------------
159
162
160
- By default all strict ``EnumFields `` are ``constrained ``. This means that
161
- `CheckConstraints <https://docs.djangoproject.com/en/stable/ref/models/constraints/ >`_ will be
162
- generated at the database level to ensure that the column will reject any value that is not
163
- present in the enumeration. This is a good idea for most use cases, but it can be turned off
164
- by setting ``constrained `` to ``False ``.
163
+ By default all strict :class: `~django_enum.fields.EnumField ` are ``constrained ``. This means that
164
+ :doc: `CheckConstraints <django:ref/models/constraints >` will be generated at the database level
165
+ to ensure that the column will reject any value that is not present in the enumeration. This is a
166
+ good idea for most use cases, but it can be turned off by setting ``constrained `` to ``False ``.
165
167
166
168
.. note ::
167
169
@@ -171,19 +173,19 @@ by setting ``constrained`` to ``False``.
171
173
``primitive ``
172
174
-------------
173
175
174
- `` EnumFields `` dynamically determine the database column type by determining the most appropriate
175
- primitive type for the enumeration based on the enumeration values. You may override the primitive
176
- determined by :class: `~django_enum.fields.EnumField ` by passing a type to the `` primitive ``
177
- parameter. You will likely not need to do this unless your enumeration is
178
- :ref: `eccentric <eccentric >` in some way.
176
+ :class: ` ~django_enum.fields.EnumField ` dynamically determines the database column type by
177
+ determining the most appropriate primitive type for the enumeration based on the enumeration
178
+ values. You may override the primitive determined by :class: `~django_enum.fields.EnumField ` by
179
+ passing a type to the `` primitive `` parameter. You will likely not need to do this unless your
180
+ enumeration is :ref: `eccentric <eccentric >` in some way.
179
181
180
182
``coerce ``
181
183
----------
182
184
183
185
Setting this parameter to ``False `` will turn off the automatic conversion to
184
- the field's Enum _ type while leaving all validation checks in place. It will
185
- still be possible to set the field directly as an Enum _ instance and to
186
- filter by Enum _ instance or any symmetric value:
186
+ the field's :class: ` enum.Enum ` type while leaving all validation checks in place. It will
187
+ still be possible to set the field directly as an :class: ` enum.Enum ` instance and to
188
+ filter by :class: ` enum.Enum ` instance or any symmetric value:
187
189
188
190
.. code-block :: python
189
191
@@ -210,21 +212,22 @@ filter by Enum_ instance or any symmetric value:
210
212
enum-properties
211
213
###############
212
214
213
- Almost any Enum _ type is supported, so you may make use of Enum _ extension libraries like
214
- enum-properties _ to define very rich enumeration fields:
215
+ Almost any :class: ` enum.Enum ` type is supported, so you may make use of :class: ` enum.Enum `
216
+ extension libraries like :doc: ` enum-properties:index ` to define very rich enumeration fields:
215
217
216
218
.. code :: bash
217
219
218
220
pip install enum-properties
219
221
220
- enum-properties _ is an extension to Enum _ that allows properties to be added to enumeration
221
- instances using a simple declarative syntax. This is a less awkward and more compatible alternative
222
- than dataclass enumerations.
222
+ :doc: ` enum-properties:index ` is an extension to :class: ` enum.Enum ` that allows properties to be
223
+ added to enumeration instances using a simple declarative syntax. This is a less awkward and more
224
+ compatible alternative than dataclass enumerations.
223
225
224
- If you find yourself considering a dataclass enumeration, consider using enum-properties _ instead.
225
- dataclass enumerations do not work with :class: `~django_enum.fields.EnumField ` because their value
226
- type is a dataclass. Futher, most libraries that expect to be able to work with enumerations expect
227
- the ``value `` attribute to be a primitive serializable type.
226
+ If you find yourself considering a dataclass enumeration, consider using
227
+ :doc: `enum-properties:index ` instead. dataclass enumerations do not work with
228
+ :class: `~django_enum.fields.EnumField ` because their value type is a dataclass. Futher, most
229
+ libraries that expect to be able to work with enumerations expect the ``value `` attribute to be a
230
+ primitive serializable type.
228
231
229
232
.. code-block :: python
230
233
@@ -295,7 +298,7 @@ compatible with Django's
295
298
(``TextChoices `` and ``IntegerChoices `` django-enum _ provides
296
299
:class: `~django_enum.choices.TextChoices `, :class: `~django_enum.choices.IntegerChoices `,
297
300
:class: `~django_enum.choices.FlagChoices ` and :class: `~django_enum.choices.FloatChoices ` types that
298
- derive from enum-properties _ and Django's ``Choices ``. So the above enumeration could also be
301
+ derive from :doc: ` enum-properties:index ` and Django's ``Choices ``. So the above enumeration could also be
299
302
written:
300
303
301
304
.. code-block :: python
@@ -316,7 +319,7 @@ written:
316
319
317
320
.. note ::
318
321
319
- To use these ``Choices `` extensions you will need to install enum-properties _ which is an
322
+ To use these ``Choices `` extensions you will need to install :doc: ` enum-properties:index ` which is an
320
323
optional dependency.
321
324
322
325
.. _forms :
@@ -327,7 +330,7 @@ Forms
327
330
An ``EnumChoiceField `` type is provided that enables symmetric value resolution
328
331
and will automatically coerce any set value to the underlying enumeration type.
329
332
Django _'s ``ModelForms `` will use this form field type to represent
330
- `` EnumFields ` ` by default. For most scenarios this is sufficient. The
333
+ :class: ` ~django_enum.fields.EnumField ` by default. For most scenarios this is sufficient. The
331
334
``EnumChoiceField `` can also be explicitly used. For example, using our
332
335
``TextChoicesExample `` from above - if ``color `` was declared with
333
336
`strict=False `, we could add additional choices to our form field like so:
@@ -453,8 +456,8 @@ dependency on django-filter_ is optional, you must first install it:
453
456
# now filtering by symmetric value in url parameters works:
454
457
# e.g.: /?color=FF0000
455
458
456
- An ``EnumFilterSet `` type is also provided that uses ``EnumFilter `` for `` EnumFields ``
457
- by default. So the above is also equivalent to:
459
+ An ``EnumFilterSet `` type is also provided that uses ``EnumFilter `` for
460
+ :class: ` ~django_enum.fields.EnumField ` by default. So the above is also equivalent to:
458
461
459
462
.. code-block ::
460
463
@@ -482,21 +485,21 @@ Migrations
482
485
*Never reference or import your enumeration classes in a migration file,
483
486
work with the primitive values instead *.
484
487
485
- The deconstructed `` EnumFields ` ` only include the choices tuple in the
486
- migration files. This is because Enum _ classes may come and go or be
488
+ The deconstructed :class: ` ~django_enum.fields.EnumField ` only include the choices tuple in the
489
+ migration files. This is because :class: ` enum.Enum ` classes may come and go or be
487
490
altered but the earlier migration files must still work. Simply treat any
488
491
custom migration routines as if they were operating on a normal model field
489
492
with choices.
490
493
491
- `` EnumFields ` ` in migration files will not resolve the field values to
494
+ :class: ` ~django_enum.fields.EnumField ` in migration files will not resolve the field values to
492
495
enumeration types. The fields will be the primitive enumeration values as they
493
496
are with any field with choices.
494
497
495
498
Flag Enumerations
496
499
#################
497
500
498
501
Python supports `bit masks <https://en.wikipedia.org/wiki/Mask_(computing) >`_ through the
499
- `Flag <https://docs.python.org/3/library/enum.html#enum.Flag >`_ extension to Enum _ .
502
+ `Flag <https://docs.python.org/3/library/enum.html#enum.Flag >`_ extension to :class: ` enum.Enum ` .
500
503
501
504
These enumerations are fully supported and will render as multi select form fields
502
505
by default. For example:
@@ -572,8 +575,8 @@ Flags with more than 64 bits
572
575
----------------------------
573
576
574
577
Flag enumerations of arbitrary size are supported, however if the enum has more
575
- than 64 flags it will be stored as a ` BinaryField < https://docs.djangoproject.com/en/stable/ref/ models/fields/#binaryfield >`_.
576
- It is therefore strongly recommended to keep your Flag _ enumerations at 64 bits or less.
578
+ than 64 flags it will be stored as a :class: ` django.db. models.BinaryField `. It is therefore
579
+ strongly recommended to keep your :class: ` enum.Flag ` enumerations at 64 bits or less.
577
580
578
581
.. warning ::
579
582
0 commit comments