AccessLevel

public enum AccessLevel : String, Codable

Access Level for Swift variables and methods, see https://docs.swift.org/swift-book/LanguageGuide/AccessControl.html

  • open

    Declaration

    Swift

    case open
  • public

    Declaration

    Swift

    case `public`
  • package

    Declaration

    Swift

    case package
  • internal

    Declaration

    Swift

    case `internal`
  • private

    Declaration

    Swift

    case `private`
  • fileprivate

    Declaration

    Swift

    case `fileprivate`