ObjcLDValueType

@objc(LDValueType)
public enum ObjcLDValueType : Int

Used to represent the type of an LDValue.

  • The value returned by LDValue.getType() when the represented value is a null.

    Declaration

    Swift

    case null
  • The value returned by LDValue.getType() when the represented value is a boolean.

    Declaration

    Swift

    case bool
  • The value returned by LDValue.getType() when the represented value is a number.

    Declaration

    Swift

    case number
  • The value returned by LDValue.getType() when the represented value is a string.

    Declaration

    Swift

    case string
  • The value returned by LDValue.getType() when the represented value is an array.

    Declaration

    Swift

    case array
  • The value returned by LDValue.getType() when the represented value is an object.

    Declaration

    Swift

    case object