Package org.yamcs.protobuf
Interface InstanceTemplateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceTemplate,InstanceTemplate.Builder
public interface InstanceTemplateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Human-friendly descriptioncom.google.protobuf.ByteStringgetDescriptionBytes()Human-friendly descriptionStringgetName()Template name.com.google.protobuf.ByteStringgetNameBytes()Template name.TemplateVariablegetVariables(int index)List of variables that this template may expectintgetVariablesCount()List of variables that this template may expectList<TemplateVariable>getVariablesList()List of variables that this template may expectTemplateVariableOrBuildergetVariablesOrBuilder(int index)List of variables that this template may expectList<? extends TemplateVariableOrBuilder>getVariablesOrBuilderList()List of variables that this template may expectbooleanhasDescription()Human-friendly descriptionbooleanhasName()Template name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Template name.
optional string name = 1;
-
getName
String getName()
Template name.
optional string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Template name.
optional string name = 1;
-
hasDescription
boolean hasDescription()
Human-friendly description
optional string description = 3;
-
getDescription
String getDescription()
Human-friendly description
optional string description = 3;
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Human-friendly description
optional string description = 3;
-
getVariablesList
List<TemplateVariable> getVariablesList()
List of variables that this template may expect
repeated .yamcs.protobuf.yamcsManagement.TemplateVariable variables = 2;
-
getVariables
TemplateVariable getVariables(int index)
List of variables that this template may expect
repeated .yamcs.protobuf.yamcsManagement.TemplateVariable variables = 2;
-
getVariablesCount
int getVariablesCount()
List of variables that this template may expect
repeated .yamcs.protobuf.yamcsManagement.TemplateVariable variables = 2;
-
getVariablesOrBuilderList
List<? extends TemplateVariableOrBuilder> getVariablesOrBuilderList()
List of variables that this template may expect
repeated .yamcs.protobuf.yamcsManagement.TemplateVariable variables = 2;
-
getVariablesOrBuilder
TemplateVariableOrBuilder getVariablesOrBuilder(int index)
List of variables that this template may expect
repeated .yamcs.protobuf.yamcsManagement.TemplateVariable variables = 2;
-
-