Interface DiagnosticOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Diagnostic
,Diagnostic.Builder
public interface DiagnosticOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Diagnostic.Kind
getKind()
The kind of diagnostic information provided.int
getKindValue()
The kind of diagnostic information provided.String
getLocation()
File name and line number of the error or warning.com.google.protobuf.ByteString
getLocationBytes()
File name and line number of the error or warning.String
getMessage()
Message describing the error or warning.com.google.protobuf.ByteString
getMessageBytes()
Message describing the error or warning.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocation
String getLocation()
File name and line number of the error or warning.
string location = 1;
- Returns:
- The location.
-
getLocationBytes
com.google.protobuf.ByteString getLocationBytes()
File name and line number of the error or warning.
string location = 1;
- Returns:
- The bytes for location.
-
getKindValue
int getKindValue()
The kind of diagnostic information provided.
.google.api.servicemanagement.v1.Diagnostic.Kind kind = 2;
- Returns:
- The enum numeric value on the wire for kind.
-
getKind
Diagnostic.Kind getKind()
The kind of diagnostic information provided.
.google.api.servicemanagement.v1.Diagnostic.Kind kind = 2;
- Returns:
- The kind.
-
getMessage
String getMessage()
Message describing the error or warning.
string message = 3;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Message describing the error or warning.
string message = 3;
- Returns:
- The bytes for message.
-
-