Interface BuildEvent.ConsoleOutputOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
BuildEvent.ConsoleOutput, BuildEvent.ConsoleOutput.Builder
Enclosing class:
BuildEvent

public static interface BuildEvent.ConsoleOutputOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    Used if the output is not UTF-8 text (for example, a binary proto).
     
    Regular UTF-8 output; normal text.
    com.google.protobuf.ByteString
    Regular UTF-8 output; normal text.
    The output stream type.
    int
    The output stream type.
    boolean
    Used if the output is not UTF-8 text (for example, a binary proto).
    boolean
    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 Details

    • 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

       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

      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.
    • getOutputCase