enum CookingMode
The current cooking mode.
-
Unknown cooking mode.
Declaration
Swift
case unknownCookingMode
-
Bake.
Declaration
Swift
case bake
-
Beat.
Declaration
Swift
case beat
-
Blend.
Declaration
Swift
case blend
-
Boil.
Declaration
Swift
case boil
-
Brew.
Declaration
Swift
case brew
-
Broil.
Declaration
Swift
case broil
-
Convection bake.
Declaration
Swift
case convectionBake
-
Cook.
Declaration
Swift
case cook
-
Defrost.
Declaration
Swift
case defrost
-
Dehydrate.
Declaration
Swift
case dehydrate
-
Ferment.
Declaration
Swift
case ferment
-
Fry.
Declaration
Swift
case fry
-
Grill.
Declaration
Swift
case grill
-
Knead.
Declaration
Swift
case knead
-
Microwave.
Declaration
Swift
case microwave
-
Mix.
Declaration
Swift
case mix
-
Pressure cook.
Declaration
Swift
case pressureCook
-
Puree.
Declaration
Swift
case puree
-
Roast.
Declaration
Swift
case roast
-
Saute.
Declaration
Swift
case saute
-
Slow cook.
Declaration
Swift
case slowCook
-
Sous vide.
Declaration
Swift
case sousVide
-
Steam.
Declaration
Swift
case steam
-
Stew.
Declaration
Swift
case stew
-
Stir.
Declaration
Swift
case stir
-
Warm.
Declaration
Swift
case warm
-
Whip.
Declaration
Swift
case whip
-
Creates a new instance with the specified raw value.
If there is no value of the type that corresponds with the specified raw value, this initializer returns
nil
. For example:enum PaperSize: String { case A4, A5, Letter, Legal } print(PaperSize(rawValue: "Legal")) // Prints "Optional("PaperSize.Legal")" print(PaperSize(rawValue: "Tabloid")) // Prints "nil"
Declaration
Swift
init?(rawValue: UInt64)
Parameters
rawValue
The raw value to use for the new instance.