Interface BuildEvent.ConsoleOutputOrBuilder

    • Method Detail

      • getTypeValue

        int getTypeValue()
         The output stream type.
         
        .google.devtools.build.v1.ConsoleOutputStream type = 1;
        Returns:
        The enum numeric value on the wire for type.
      • getType

        ConsoleOutputStream getType()
         The output stream type.
         
        .google.devtools.build.v1.ConsoleOutputStream type = 1;
        Returns:
        The type.
      • hasTextOutput

        boolean hasTextOutput()
         Regular UTF-8 output; normal text.
         
        string text_output = 2;
        Returns:
        Whether the textOutput field is set.
      • getTextOutput

        java.lang.String getTextOutput()
         Regular UTF-8 output; normal text.
         
        string text_output = 2;
        Returns:
        The textOutput.
      • getTextOutputBytes

        ByteString getTextOutputBytes()
         Regular UTF-8 output; normal text.
         
        string text_output = 2;
        Returns:
        The bytes for textOutput.
      • hasBinaryOutput

        boolean hasBinaryOutput()
         Used if the output is not UTF-8 text (for example, a binary proto).
         
        bytes binary_output = 3;
        Returns:
        Whether the binaryOutput field is set.
      • getBinaryOutput

        ByteString getBinaryOutput()
         Used if the output is not UTF-8 text (for example, a binary proto).
         
        bytes binary_output = 3;
        Returns:
        The binaryOutput.