Enum VNErrorCode

    • Enum Constant Detail

      • RequestCancelled

        public static final VNErrorCode RequestCancelled
      • InvalidFormat

        public static final VNErrorCode InvalidFormat
      • OperationFailed

        public static final VNErrorCode OperationFailed
      • OutOfBoundsError

        public static final VNErrorCode OutOfBoundsError
      • InvalidOption

        public static final VNErrorCode InvalidOption
      • MissingOption

        public static final VNErrorCode MissingOption
      • NotImplemented

        public static final VNErrorCode NotImplemented
      • InternalError

        public static final VNErrorCode InternalError
      • OutOfMemory

        public static final VNErrorCode OutOfMemory
      • UnknownError

        public static final VNErrorCode UnknownError
      • InvalidOperation

        public static final VNErrorCode InvalidOperation
      • InvalidImage

        public static final VNErrorCode InvalidImage
      • InvalidArgument

        public static final VNErrorCode InvalidArgument
      • InvalidModel

        public static final VNErrorCode InvalidModel
      • UnsupportedRevision

        public static final VNErrorCode UnsupportedRevision
        Since:
        Available in iOS 12.0 and later.
    • Method Detail

      • values

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

        public static VNErrorCode 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
      • getClassDomain

        public static java.lang.String getClassDomain()
        Since:
        Available in iOS 11.0 and later.
      • value

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

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