Package org.yamcs.protobuf
Interface ArchivedParameterInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ArchivedParameterInfo,ArchivedParameterInfo.Builder
public interface ArchivedParameterInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Yamcs.Value.TypegetEngType()parameter engineering typeStringgetFqn()parameter fully qualified namecom.google.protobuf.ByteStringgetFqnBytes()parameter fully qualified nameintgetGids(int index)the groups from which this parameter is part ofintgetGidsCount()the groups from which this parameter is part ofList<Integer>getGidsList()the groups from which this parameter is part ofintgetPid()parameter idYamcs.Value.TypegetRawType()parameter raw typebooleanhasEngType()parameter engineering typebooleanhasFqn()parameter fully qualified namebooleanhasPid()parameter idbooleanhasRawType()parameter raw type-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPid
boolean hasPid()
parameter id
optional uint32 pid = 1;
-
getPid
int getPid()
parameter id
optional uint32 pid = 1;
-
hasFqn
boolean hasFqn()
parameter fully qualified name
optional string fqn = 2;
-
getFqn
String getFqn()
parameter fully qualified name
optional string fqn = 2;
-
getFqnBytes
com.google.protobuf.ByteString getFqnBytes()
parameter fully qualified name
optional string fqn = 2;
-
hasRawType
boolean hasRawType()
parameter raw type
optional .yamcs.protobuf.Value.Type rawType = 3;
-
getRawType
Yamcs.Value.Type getRawType()
parameter raw type
optional .yamcs.protobuf.Value.Type rawType = 3;
-
hasEngType
boolean hasEngType()
parameter engineering type
optional .yamcs.protobuf.Value.Type engType = 4;
-
getEngType
Yamcs.Value.Type getEngType()
parameter engineering type
optional .yamcs.protobuf.Value.Type engType = 4;
-
getGidsList
List<Integer> getGidsList()
the groups from which this parameter is part of
repeated uint32 gids = 5;
-
getGidsCount
int getGidsCount()
the groups from which this parameter is part of
repeated uint32 gids = 5;
-
getGids
int getGids(int index)
the groups from which this parameter is part of
repeated uint32 gids = 5;
-
-