Enum CBATTErrorCode

    • Enum Constant Detail

      • Success

        public static final CBATTErrorCode Success
        Since:
        Available in iOS 6.0 and later.
      • ReadNotPermitted

        public static final CBATTErrorCode ReadNotPermitted
      • WriteNotPermitted

        public static final CBATTErrorCode WriteNotPermitted
      • InsufficientAuthentication

        public static final CBATTErrorCode InsufficientAuthentication
      • RequestNotSupported

        public static final CBATTErrorCode RequestNotSupported
      • InsufficientAuthorization

        public static final CBATTErrorCode InsufficientAuthorization
      • PrepareQueueFull

        public static final CBATTErrorCode PrepareQueueFull
      • AttributeNotFound

        public static final CBATTErrorCode AttributeNotFound
      • AttributeNotLong

        public static final CBATTErrorCode AttributeNotLong
      • InsufficientEncryptionKeySize

        public static final CBATTErrorCode InsufficientEncryptionKeySize
      • InvalidAttributeValueLength

        public static final CBATTErrorCode InvalidAttributeValueLength
      • InsufficientEncryption

        public static final CBATTErrorCode InsufficientEncryption
      • UnsupportedGroupType

        public static final CBATTErrorCode UnsupportedGroupType
      • InsufficientResources

        public static final CBATTErrorCode InsufficientResources
    • Method Detail

      • values

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

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