Package gauge.messages
Interface Messages.SpecInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Messages.SpecInfo,Messages.SpecInfo.Builder
- Enclosing class:
- Messages
public static interface Messages.SpecInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFileName()/ Full File path containing the current Spec being executed.com.google.protobuf.ByteStringgetFileNameBytes()/ Full File path containing the current Spec being executed.booleangetIsFailed()/ Flag to indicate if the current Spec execution failed.StringgetName()/ Name of the current Spec being executed.com.google.protobuf.ByteStringgetNameBytes()/ Name of the current Spec being executed.StringgetTags(int index)/ Tags relevant to the current Spec execution.com.google.protobuf.ByteStringgetTagsBytes(int index)/ Tags relevant to the current Spec execution.intgetTagsCount()/ Tags relevant to the current Spec execution.List<String>getTagsList()/ Tags relevant to the current Spec execution.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
/ Name of the current Spec being executed.
string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
/ Name of the current Spec being executed.
string name = 1;
-
getFileName
String getFileName()
/ Full File path containing the current Spec being executed.
string fileName = 2;
-
getFileNameBytes
com.google.protobuf.ByteString getFileNameBytes()
/ Full File path containing the current Spec being executed.
string fileName = 2;
-
getIsFailed
boolean getIsFailed()
/ Flag to indicate if the current Spec execution failed.
bool isFailed = 3;
-
getTagsList
List<String> getTagsList()
/ Tags relevant to the current Spec execution.
repeated string tags = 4;
-
getTagsCount
int getTagsCount()
/ Tags relevant to the current Spec execution.
repeated string tags = 4;
-
getTags
String getTags(int index)
/ Tags relevant to the current Spec execution.
repeated string tags = 4;
-
getTagsBytes
com.google.protobuf.ByteString getTagsBytes(int index)
/ Tags relevant to the current Spec execution.
repeated string tags = 4;
-
-