Enum CNErrorCode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CNErrorCode>, NSErrorCode, org.robovm.rt.bro.ValuedEnum

    public enum CNErrorCode
    extends java.lang.Enum<CNErrorCode>
    implements NSErrorCode
    Since:
    Available in iOS 9.0 and later.
    • Enum Constant Detail

      • CommunicationError

        public static final CNErrorCode CommunicationError
      • DataAccessError

        public static final CNErrorCode DataAccessError
      • AuthorizationDenied

        public static final CNErrorCode AuthorizationDenied
      • NoAccessableWritableContainers

        public static final CNErrorCode NoAccessableWritableContainers
        Since:
        Available in iOS 11.3 and later.
      • RecordDoesNotExist

        public static final CNErrorCode RecordDoesNotExist
      • InsertedRecordAlreadyExists

        public static final CNErrorCode InsertedRecordAlreadyExists
      • ContainmentCycle

        public static final CNErrorCode ContainmentCycle
      • ContainmentScope

        public static final CNErrorCode ContainmentScope
      • ParentRecordDoesNotExist

        public static final CNErrorCode ParentRecordDoesNotExist
      • RecordIdentifierInvalid

        public static final CNErrorCode RecordIdentifierInvalid
      • ValidationMultipleErrors

        public static final CNErrorCode ValidationMultipleErrors
      • ValidationTypeMismatch

        public static final CNErrorCode ValidationTypeMismatch
      • ValidationConfigurationError

        public static final CNErrorCode ValidationConfigurationError
      • PredicateInvalid

        public static final CNErrorCode PredicateInvalid
      • PolicyViolation

        public static final CNErrorCode PolicyViolation
      • ClientIdentifierInvalid

        public static final CNErrorCode ClientIdentifierInvalid
      • ClientIdentifierDoesNotExist

        public static final CNErrorCode ClientIdentifierDoesNotExist
      • VCardMalformed

        public static final CNErrorCode VCardMalformed
        Since:
        Available in iOS 11.0 and later.
      • VCardSummarizationError

        public static final CNErrorCode VCardSummarizationError
        Since:
        Available in iOS 12.0 and later.
    • Method Detail

      • values

        public static CNErrorCode[] 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 (CNErrorCode c : CNErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CNErrorCode 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 CNErrorCode 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