Interface BuildEvent.ConsoleOutputOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.ByteString getBinaryOutput()
      Used if the output is not UTF-8 text (for example, a binary proto).
      BuildEvent.ConsoleOutput.OutputCase getOutputCase()  
      java.lang.String getTextOutput()
      Regular UTF-8 output; normal text.
      com.google.protobuf.ByteString getTextOutputBytes()
      Regular UTF-8 output; normal text.
      ConsoleOutputStream getType()
      The output stream type.
      int getTypeValue()
      The output stream type.
      boolean hasBinaryOutput()
      Used if the output is not UTF-8 text (for example, a binary proto).
      boolean hasTextOutput()
      Regular UTF-8 output; normal text.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • 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

        com.google.protobuf.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

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