Package com.google.devtools.build.v1
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetBinaryOutput()Used if the output is not UTF-8 text (for example, a binary proto).BuildEvent.ConsoleOutput.OutputCasegetOutputCase()java.lang.StringgetTextOutput()Regular UTF-8 output; normal text.com.google.protobuf.ByteStringgetTextOutputBytes()Regular UTF-8 output; normal text.ConsoleOutputStreamgetType()The output stream type.intgetTypeValue()The output stream type.booleanhasBinaryOutput()Used if the output is not UTF-8 text (for example, a binary proto).booleanhasTextOutput()Regular UTF-8 output; normal text.-
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.
-
getOutputCase
BuildEvent.ConsoleOutput.OutputCase getOutputCase()
-
-