GooglePlacesSwift Framework Reference

FuelType

enum FuelType
extension FuelType : CaseIterable, Copyable, Equatable, Escapable, Hashable, RawRepresentable, Sendable, SendableMetatype

Describes the fuel option type. LINT.IfChange(FuelType)

  • A type that can represent a collection of all values of this type.

    Declaration

    Swift

    typealias AllCases = [FuelType]
  • The raw type that can be used to represent all values of the conforming type.

    Every distinct value of the conforming type has a corresponding unique value of the RawValue type, but there may be values of the RawValue type that don’t have a corresponding value of the conforming type.

    Declaration

    Swift

    typealias RawValue = Int
  • A collection of all values of this type.

    Declaration

    Swift

    nonisolated static var allCases: [FuelType] { get }
  • Declaration

    Swift

    case bioDiesel
  • Declaration

    Swift

    case diesel
  • Declaration

    Swift

    case dieselPlus
  • Declaration

    Swift

    case e100
  • e80

    Declaration

    Swift

    case e80
  • e85

    Declaration

    Swift

    case e85
  • 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: Int)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • lpg

    Declaration

    Swift

    case lpg
  • Declaration

    Swift

    case methane
  • Declaration

    Swift

    case midgrade
  • Declaration

    Swift

    case premium
  • The corresponding value of the raw type.

    A new instance initialized with rawValue will be equivalent to this instance. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    let selectedSize = PaperSize.Letter
    print(selectedSize.rawValue)
    // Prints "Letter"
    
    print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
    // Prints "true"
    

    Declaration

    Swift

    var rawValue: Int { get }
  • Declaration

    Swift

    case regularUnleaded
  • Declaration

    Swift

    case sp100
  • Declaration

    Swift

    case sp91
  • Declaration

    Swift

    case sp91E10
  • Declaration

    Swift

    case sp92
  • Declaration

    Swift

    case sp95
  • Declaration

    Swift

    case sp95E10
  • Declaration

    Swift

    case sp98
  • Declaration

    Swift

    case sp99
  • Declaration

    Swift

    case truckDiesel
  • Declaration

    Swift

    case unspecified