Skip to content

ENUM

Plist.Value

Contents

  • Cases
    • string(_:)
    • integer(_:)
    • real(_:)
    • boolean(_:)
    • dictionary(_:)
    • array(_:)
swift
public indirect enum Value: Codable, Equatable, Sendable

It represents the values of the .plist or .entitlements file dictionary. It ensures that the values used to define the content of the dynamically generated .plist or .entitlements files are valid

Cases

string(_:)

swift
case string(String)

It represents a string value.

integer(_:)

swift
case integer(Int)

It represents an integer value.

real(_:)

swift
case real(Double)

It represents a floating value.

boolean(_:)

swift
case boolean(Bool)

It represents a boolean value.

dictionary(_:)

swift
case dictionary([String: Value])

It represents a dictionary value.

array(_:)

swift
case array([Value])

It represents an array value.

Released under the MIT License.