DataStoreStorageType

@objcMembers
open class DataStoreStorageType : NSObject

Constants that provide information regarding storage type of data store manager.

  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified string value, this initializer returns nil.

    Declaration

    Swift

    public required init?(rawValue: String)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • Creates a new instance with the specified raw value.

    Declaration

    Swift

    init(_ rawValue: String)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • The corresponding value of the raw type.

    Declaration

    Swift

    public final var rawValue: String
  • A collection of all values of this type.

    Declaration

    Swift

    public static var allCases: [DataStoreStorageType] { get }
  • Setup entities before DataStoreStorageType receives its first message.

    Declaration

    Swift

    public static func setupEntities()
  • A textual representation of this instance.

    Declaration

    Swift

    open override var description: String { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    open override var debugDescription: String { get }