TNEntityEnergySourceCategory
@objc
public enum TNEntityEnergySourceCategory : Int, Codable, RawRepresentable
Categories of energy sources.
-
Nuclear power sources.
Declaration
Swift
case nuclear
-
All kinds of fossil power sources.
Declaration
Swift
case generalFossil
-
Fossil power from coal.
Declaration
Swift
case coal
-
Fossil power from gas.
Declaration
Swift
case gas
-
All kinds of regenerative power sources.
Declaration
Swift
case generalGreen
-
Regenerative power from PV.
Declaration
Swift
case solar
-
Regenerative power from wind turbines.
Declaration
Swift
case wind
-
Regenerative power from water turbines.
Declaration
Swift
case water
-
Undocumented
Declaration
Swift
case none
-
Declaration
Swift
public typealias RawValue = String
-
Declaration
Swift
public var rawValue: RawValue { get }
-
Declaration
Swift
public init?(rawValue: RawValue)