Enum BuildRC

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BuildRC>

    public enum BuildRC
    extends java.lang.Enum<BuildRC>
    Build environment return codes.
    Author:
    Christopher Mindus
    • Enum Constant Detail

      • Canceled

        public static final BuildRC Canceled
      • Output_NotFound

        public static final BuildRC Output_NotFound
      • EnvironmentError

        public static final BuildRC EnvironmentError
      • Java_NotFound

        public static final BuildRC Java_NotFound
      • Java_NotJDK

        public static final BuildRC Java_NotJDK
      • JDK_VersionError

        public static final BuildRC JDK_VersionError
      • NodeJS_NotFound

        public static final BuildRC NodeJS_NotFound
      • NodeJS_DownloadInstallError

        public static final BuildRC NodeJS_DownloadInstallError
      • NodeJS_CleanupError

        public static final BuildRC NodeJS_CleanupError
      • NPM_NotFound

        public static final BuildRC NPM_NotFound
      • Gradle_NotFound

        public static final BuildRC Gradle_NotFound
      • Gradle_DownloadInstallError

        public static final BuildRC Gradle_DownloadInstallError
      • Gradle_CleanupError

        public static final BuildRC Gradle_CleanupError
      • Cordova_InstallError

        public static final BuildRC Cordova_InstallError
      • Cordova_iOSDeployError

        public static final BuildRC Cordova_iOSDeployError
      • Cordova_VersionError

        public static final BuildRC Cordova_VersionError
      • Cordova_InitializeError

        public static final BuildRC Cordova_InitializeError
      • Android_Error

        public static final BuildRC Android_Error
      • Accept_LicenseAgreement

        public static final BuildRC Accept_LicenseAgreement
      • Cert_CreateFailure

        public static final BuildRC Cert_CreateFailure
      • App_PrepareError

        public static final BuildRC App_PrepareError
      • App_BuildError

        public static final BuildRC App_BuildError
    • Method Detail

      • values

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

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