An enumeration defines a common type for a group of related values and enables you to work with those values in a type-safe way within your code.
Types of Enumeration:
- Basic Enumerations
- Enumerations with Raw Values
- Enumerations with Associated Values
1. Basic Enumerations
1.1 Create an enumerations
- To create an enumerations, use
enum
keyword and place their entire definition within a pair of braces:
- Here’s an
enum
called Direction. It contains 4 cases. The values defined in an enumeration (such as up, down, left, and right) are its enumeration cases. You use thecase
keyword to introduce new enumeration cases.
- Multiple cases can appear on a single line, separated by commas:
1.2 Initialization
- Enum values can be used by their fully-qualified name, but you can omit the type name when it can be inferred:
- The type of
direction
is inferred when it is initialized with one of the possible values ofDirection
. Now we can set it to a differentDirection
value using a shorter dot syntax:
1.3 Matching Enumeration Values with a Switch Statement
- The most fundamental way of comparing/extracting enum values is with a
switch
statement:
2. Enumerations with Raw Values
- An enumeration may contain value. Swift supports the following types for the value of an enum:
Int
,Float
,String
andBool
.
2.1 Implicitly Assigned Raw Values
-
When you’re working with enumerations that store integer or string raw values, you don’t have to explicitly assign a raw value for each case. When you don’t, Swift will automatically assign the values for you.
-
The enumeration below is a refinement of the earlier Direction enumeration, with string raw values to represent each direction’s name:
- In the example above, Direction.up has an implicit raw value of "up", and so on. You access the raw value of an enumeration case with its rawValue property:
- The enumeration below is a Planet enumeration, with integer raw values to represent each planet’s order from the sun:
- In the example above,
Planet.mercury
has an explicit raw value of 1,Planet.venus
has an implicit raw value of 2, and so on. You access the raw value of an enumeration case with its rawValue property:
2.2 Initializing from a Raw Value
- You may create an enum object using a raw value. it may fail. Therefore, the returned object may be nil. This example identifies earth from its raw value of 3:
- If you try to find a planet with a position of 11, the optional
Planet
value returned by the raw value initializer will benil
:
3. Enumerations with Associated Values
- With associated values, each case may contain value along with it. Enum cases can contain one or more associated values.
3.1 Create an Enumerations with Associated Values
- The enumeration below contains the
move
case with an associated distance
3.2 Matching Enumeration Values with a Switch Statement
- The switch statement can extract the associated value:
3.3 Matching Enumeration Values with a if Statement
- A single case extraction can be done using if case:
3.4 Make Equatable Enums with Associated Values
- Enums with associated values are not Equatable by default. Implementation of the
==
operator must be done manually:
- Use of
==
operator
Next - Advanced Enum (Enumerations) by Example