Package org.yamcs.protobuf
Interface CreateTagRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTagRequest,CreateTagRequest.Builder
public interface CreateTagRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetColor()The color of the tag.com.google.protobuf.ByteStringgetColorBytes()The color of the tag.StringgetDescription()The description of the tag.com.google.protobuf.ByteStringgetDescriptionBytes()The description of the tag.StringgetInstance()Yamcs instance name.com.google.protobuf.ByteStringgetInstanceBytes()Yamcs instance name.StringgetName()**Required.** The name of the tag.com.google.protobuf.ByteStringgetNameBytes()**Required.** The name of the tag.StringgetStart()The start time of the tag.com.google.protobuf.ByteStringgetStartBytes()The start time of the tag.StringgetStop()The stop time of the tag.com.google.protobuf.ByteStringgetStopBytes()The stop time of the tag.booleanhasColor()The color of the tag.booleanhasDescription()The description of the tag.booleanhasInstance()Yamcs instance name.booleanhasName()**Required.** The name of the tag.booleanhasStart()The start time of the tag.booleanhasStop()The stop time of the tag.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInstance
boolean hasInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstance
String getInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
Yamcs instance name.
optional string instance = 1;
-
hasName
boolean hasName()
**Required.** The name of the tag.
optional string name = 2;
-
getName
String getName()
**Required.** The name of the tag.
optional string name = 2;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
**Required.** The name of the tag.
optional string name = 2;
-
hasStart
boolean hasStart()
The start time of the tag. Default is unbounded.
optional string start = 3;
-
getStart
String getStart()
The start time of the tag. Default is unbounded.
optional string start = 3;
-
getStartBytes
com.google.protobuf.ByteString getStartBytes()
The start time of the tag. Default is unbounded.
optional string start = 3;
-
hasStop
boolean hasStop()
The stop time of the tag. Default is unbounded.
optional string stop = 4;
-
getStop
String getStop()
The stop time of the tag. Default is unbounded.
optional string stop = 4;
-
getStopBytes
com.google.protobuf.ByteString getStopBytes()
The stop time of the tag. Default is unbounded.
optional string stop = 4;
-
hasDescription
boolean hasDescription()
The description of the tag.
optional string description = 5;
-
getDescription
String getDescription()
The description of the tag.
optional string description = 5;
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
The description of the tag.
optional string description = 5;
-
hasColor
boolean hasColor()
The color of the tag. Must be an RGB hex color, e.g. ``#ff0000``
optional string color = 6;
-
getColor
String getColor()
The color of the tag. Must be an RGB hex color, e.g. ``#ff0000``
optional string color = 6;
-
getColorBytes
com.google.protobuf.ByteString getColorBytes()
The color of the tag. Must be an RGB hex color, e.g. ``#ff0000``
optional string color = 6;
-
-