Enum SKErrorCode

    • Enum Constant Detail

      • ClientInvalid

        public static final SKErrorCode ClientInvalid
      • PaymentCancelled

        public static final SKErrorCode PaymentCancelled
      • PaymentInvalid

        public static final SKErrorCode PaymentInvalid
      • PaymentNotAllowed

        public static final SKErrorCode PaymentNotAllowed
      • StoreProductNotAvailable

        public static final SKErrorCode StoreProductNotAvailable
        Since:
        Available in iOS 3.0 and later.
      • CloudServicePermissionDenied

        public static final SKErrorCode CloudServicePermissionDenied
        Since:
        Available in iOS 9.3 and later.
      • CloudServiceNetworkConnectionFailed

        public static final SKErrorCode CloudServiceNetworkConnectionFailed
        Since:
        Available in iOS 9.3 and later.
      • CloudServiceRevoked

        public static final SKErrorCode CloudServiceRevoked
        Since:
        Available in iOS 10.3 and later.
      • PrivacyAcknowledgementRequired

        public static final SKErrorCode PrivacyAcknowledgementRequired
        Since:
        Available in iOS 12.2 and later.
      • UnauthorizedRequestData

        public static final SKErrorCode UnauthorizedRequestData
        Since:
        Available in iOS 12.2 and later.
      • InvalidOfferIdentifier

        public static final SKErrorCode InvalidOfferIdentifier
        Since:
        Available in iOS 12.2 and later.
      • InvalidSignature

        public static final SKErrorCode InvalidSignature
        Since:
        Available in iOS 12.2 and later.
      • MissingOfferParams

        public static final SKErrorCode MissingOfferParams
        Since:
        Available in iOS 12.2 and later.
      • InvalidOfferPrice

        public static final SKErrorCode InvalidOfferPrice
        Since:
        Available in iOS 12.2 and later.
    • Method Detail

      • values

        public static SKErrorCode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SKErrorCode c : SKErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SKErrorCode valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • value

        public long value()
        Specified by:
        value in interface org.robovm.rt.bro.ValuedEnum
      • valueOf

        public static SKErrorCode valueOf​(long n)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        n - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null