Enum ARErrorCode

    • Enum Constant Detail

      • UnsupportedConfiguration

        public static final ARErrorCode UnsupportedConfiguration
      • SensorUnavailable

        public static final ARErrorCode SensorUnavailable
      • SensorFailed

        public static final ARErrorCode SensorFailed
      • CameraUnauthorized

        public static final ARErrorCode CameraUnauthorized
      • MicrophoneUnauthorized

        public static final ARErrorCode MicrophoneUnauthorized
      • WorldTrackingFailed

        public static final ARErrorCode WorldTrackingFailed
      • InvalidReferenceImage

        public static final ARErrorCode InvalidReferenceImage
        Since:
        Available in iOS 11.3 and later.
      • InvalidReferenceObject

        public static final ARErrorCode InvalidReferenceObject
        Since:
        Available in iOS 12.0 and later.
      • InvalidWorldMap

        public static final ARErrorCode InvalidWorldMap
        Since:
        Available in iOS 12.0 and later.
      • InvalidConfiguration

        public static final ARErrorCode InvalidConfiguration
        Since:
        Available in iOS 12.0 and later.
      • InsufficientFeatures

        public static final ARErrorCode InsufficientFeatures
        Since:
        Available in iOS 12.0 and later.
      • ObjectMergeFailed

        public static final ARErrorCode ObjectMergeFailed
        Since:
        Available in iOS 12.0 and later.
      • FileIOFailed

        public static final ARErrorCode FileIOFailed
        Since:
        Available in iOS 12.0 and later.
    • Method Detail

      • values

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

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