Enum FailureDetails.CppCompile.Code

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, java.io.Serializable, java.lang.Comparable<FailureDetails.CppCompile.Code>
    Enclosing class:
    FailureDetails.CppCompile

    public static enum FailureDetails.CppCompile.Code
    extends java.lang.Enum<FailureDetails.CppCompile.Code>
    implements com.google.protobuf.ProtocolMessageEnum
    Protobuf enum failure_details.CppCompile.Code
    • Enum Constant Detail

      • CPP_COMPILE_UNKNOWN

        public static final FailureDetails.CppCompile.Code CPP_COMPILE_UNKNOWN
        CPP_COMPILE_UNKNOWN = 0 [(.failure_details.metadata) = { ... }
      • FIND_USED_HEADERS_IO_EXCEPTION

        public static final FailureDetails.CppCompile.Code FIND_USED_HEADERS_IO_EXCEPTION
        FIND_USED_HEADERS_IO_EXCEPTION = 1 [(.failure_details.metadata) = { ... }
      • COPY_OUT_ERR_FAILURE

        public static final FailureDetails.CppCompile.Code COPY_OUT_ERR_FAILURE
        COPY_OUT_ERR_FAILURE = 2 [(.failure_details.metadata) = { ... }
      • D_FILE_READ_FAILURE

        public static final FailureDetails.CppCompile.Code D_FILE_READ_FAILURE
        D_FILE_READ_FAILURE = 3 [(.failure_details.metadata) = { ... }
      • COMMAND_GENERATION_FAILURE

        public static final FailureDetails.CppCompile.Code COMMAND_GENERATION_FAILURE
        COMMAND_GENERATION_FAILURE = 4 [(.failure_details.metadata) = { ... }
      • MODULE_EXPANSION_TIMEOUT

        public static final FailureDetails.CppCompile.Code MODULE_EXPANSION_TIMEOUT
        MODULE_EXPANSION_TIMEOUT = 5 [(.failure_details.metadata) = { ... }
      • INCLUDE_PATH_OUTSIDE_EXEC_ROOT

        public static final FailureDetails.CppCompile.Code INCLUDE_PATH_OUTSIDE_EXEC_ROOT
        INCLUDE_PATH_OUTSIDE_EXEC_ROOT = 6 [(.failure_details.metadata) = { ... }
      • FAKE_COMMAND_GENERATION_FAILURE

        public static final FailureDetails.CppCompile.Code FAKE_COMMAND_GENERATION_FAILURE
        FAKE_COMMAND_GENERATION_FAILURE = 7 [(.failure_details.metadata) = { ... }
      • UNDECLARED_INCLUSIONS

        public static final FailureDetails.CppCompile.Code UNDECLARED_INCLUSIONS
        UNDECLARED_INCLUSIONS = 8 [(.failure_details.metadata) = { ... }
      • D_FILE_PARSE_FAILURE

        public static final FailureDetails.CppCompile.Code D_FILE_PARSE_FAILURE
        D_FILE_PARSE_FAILURE = 9 [(.failure_details.metadata) = { ... }
      • COVERAGE_NOTES_CREATION_FAILURE

        public static final FailureDetails.CppCompile.Code COVERAGE_NOTES_CREATION_FAILURE
        COVERAGE_NOTES_CREATION_FAILURE = 10 [(.failure_details.metadata) = { ... }
      • MODULE_EXPANSION_MISSING_DATA

        public static final FailureDetails.CppCompile.Code MODULE_EXPANSION_MISSING_DATA
        MODULE_EXPANSION_MISSING_DATA = 11 [(.failure_details.metadata) = { ... }
    • Field Detail

      • CPP_COMPILE_UNKNOWN_VALUE

        public static final int CPP_COMPILE_UNKNOWN_VALUE
        CPP_COMPILE_UNKNOWN = 0 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • FIND_USED_HEADERS_IO_EXCEPTION_VALUE

        public static final int FIND_USED_HEADERS_IO_EXCEPTION_VALUE
        FIND_USED_HEADERS_IO_EXCEPTION = 1 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • COPY_OUT_ERR_FAILURE_VALUE

        public static final int COPY_OUT_ERR_FAILURE_VALUE
        COPY_OUT_ERR_FAILURE = 2 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • D_FILE_READ_FAILURE_VALUE

        public static final int D_FILE_READ_FAILURE_VALUE
        D_FILE_READ_FAILURE = 3 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • COMMAND_GENERATION_FAILURE_VALUE

        public static final int COMMAND_GENERATION_FAILURE_VALUE
        COMMAND_GENERATION_FAILURE = 4 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • MODULE_EXPANSION_TIMEOUT_VALUE

        public static final int MODULE_EXPANSION_TIMEOUT_VALUE
        MODULE_EXPANSION_TIMEOUT = 5 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • INCLUDE_PATH_OUTSIDE_EXEC_ROOT_VALUE

        public static final int INCLUDE_PATH_OUTSIDE_EXEC_ROOT_VALUE
        INCLUDE_PATH_OUTSIDE_EXEC_ROOT = 6 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • FAKE_COMMAND_GENERATION_FAILURE_VALUE

        public static final int FAKE_COMMAND_GENERATION_FAILURE_VALUE
        FAKE_COMMAND_GENERATION_FAILURE = 7 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • UNDECLARED_INCLUSIONS_VALUE

        public static final int UNDECLARED_INCLUSIONS_VALUE
        UNDECLARED_INCLUSIONS = 8 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • D_FILE_PARSE_FAILURE_VALUE

        public static final int D_FILE_PARSE_FAILURE_VALUE
        D_FILE_PARSE_FAILURE = 9 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • COVERAGE_NOTES_CREATION_FAILURE_VALUE

        public static final int COVERAGE_NOTES_CREATION_FAILURE_VALUE
        COVERAGE_NOTES_CREATION_FAILURE = 10 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
      • MODULE_EXPANSION_MISSING_DATA_VALUE

        public static final int MODULE_EXPANSION_MISSING_DATA_VALUE
        MODULE_EXPANSION_MISSING_DATA = 11 [(.failure_details.metadata) = { ... }
        See Also:
        Constant Field Values
    • Method Detail

      • values

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

        public static FailureDetails.CppCompile.Code 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
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static FailureDetails.CppCompile.Code valueOf​(int value)
        Deprecated.
        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:
        value - 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
      • forNumber

        public static FailureDetails.CppCompile.Code forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static FailureDetails.CppCompile.Code valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - 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