Package gauge.messages
Interface Spec.ErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Spec.Error,Spec.Error.Builder
- Enclosing class:
- Spec
public static interface Spec.ErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFilename()/ Holds the filename.com.google.protobuf.ByteStringgetFilenameBytes()/ Holds the filename.intgetLineNumber()/ Holds the line number of the error in file.StringgetMessage()/ Holds the error message.com.google.protobuf.ByteStringgetMessageBytes()/ Holds the error message.Spec.Error.ErrorTypegetType()/ Holds the type of errorintgetTypeValue()/ Holds the type of error-
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()
/ Holds the type of error
.gauge.messages.Error.ErrorType type = 1;
-
getType
Spec.Error.ErrorType getType()
/ Holds the type of error
.gauge.messages.Error.ErrorType type = 1;
-
getFilename
String getFilename()
/ Holds the filename.
string filename = 2;
-
getFilenameBytes
com.google.protobuf.ByteString getFilenameBytes()
/ Holds the filename.
string filename = 2;
-
getLineNumber
int getLineNumber()
/ Holds the line number of the error in file.
int32 lineNumber = 3;
-
getMessage
String getMessage()
/ Holds the error message.
string message = 4;
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
/ Holds the error message.
string message = 4;
-
-