Enum CBErrorCode

    • Enum Constant Detail

      • InvalidParameters

        public static final CBErrorCode InvalidParameters
        Since:
        Available in iOS 6.0 and later.
      • InvalidHandle

        public static final CBErrorCode InvalidHandle
        Since:
        Available in iOS 6.0 and later.
      • NotConnected

        public static final CBErrorCode NotConnected
        Since:
        Available in iOS 6.0 and later.
      • OutOfSpace

        public static final CBErrorCode OutOfSpace
        Since:
        Available in iOS 6.0 and later.
      • OperationCancelled

        public static final CBErrorCode OperationCancelled
        Since:
        Available in iOS 6.0 and later.
      • ConnectionTimeout

        public static final CBErrorCode ConnectionTimeout
        Since:
        Available in iOS 6.0 and later.
      • PeripheralDisconnected

        public static final CBErrorCode PeripheralDisconnected
        Since:
        Available in iOS 6.0 and later.
      • UUIDNotAllowed

        public static final CBErrorCode UUIDNotAllowed
        Since:
        Available in iOS 6.0 and later.
      • AlreadyAdvertising

        public static final CBErrorCode AlreadyAdvertising
        Since:
        Available in iOS 6.0 and later.
      • ConnectionFailed

        public static final CBErrorCode ConnectionFailed
        Since:
        Available in iOS 7.1 and later.
      • ConnectionLimitReached

        public static final CBErrorCode ConnectionLimitReached
        Since:
        Available in iOS 9.0 and later.
      • UnkownDevice

        @Deprecated
        public static final CBErrorCode UnkownDevice
        Deprecated.
        Deprecated in iOS 13.0. Use CBErrorUnknownDevice instead
        Since:
        Available in iOS 9.0 and later.
      • UnknownDevice

        public static final CBErrorCode UnknownDevice
        Since:
        Available in iOS 12.0 and later.
      • OperationNotSupported

        public static final CBErrorCode OperationNotSupported
        Since:
        Available in iOS 12.0 and later.
    • Method Detail

      • values

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

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