Package org.yamcs.protobuf
Interface IndexEntryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IndexEntry
,IndexEntry.Builder
public interface IndexEntryOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionint
getCount()
optional int32 count = 3;
long
optional int64 seqStart = 4;
long
optional int64 seqStop = 5;
getStart()
optional string start = 1;
com.google.protobuf.ByteString
optional string start = 1;
getStop()
optional string stop = 2;
com.google.protobuf.ByteString
optional string stop = 2;
boolean
hasCount()
optional int32 count = 3;
boolean
optional int64 seqStart = 4;
boolean
optional int64 seqStop = 5;
boolean
hasStart()
optional string start = 1;
boolean
hasStop()
optional string stop = 2;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasStart
boolean hasStart()optional string start = 1;
- Returns:
- Whether the start field is set.
-
getStart
String getStart()optional string start = 1;
- Returns:
- The start.
-
getStartBytes
com.google.protobuf.ByteString getStartBytes()optional string start = 1;
- Returns:
- The bytes for start.
-
hasStop
boolean hasStop()optional string stop = 2;
- Returns:
- Whether the stop field is set.
-
getStop
String getStop()optional string stop = 2;
- Returns:
- The stop.
-
getStopBytes
com.google.protobuf.ByteString getStopBytes()optional string stop = 2;
- Returns:
- The bytes for stop.
-
hasCount
boolean hasCount()optional int32 count = 3;
- Returns:
- Whether the count field is set.
-
getCount
int getCount()optional int32 count = 3;
- Returns:
- The count.
-
hasSeqStart
boolean hasSeqStart()optional int64 seqStart = 4;
- Returns:
- Whether the seqStart field is set.
-
getSeqStart
long getSeqStart()optional int64 seqStart = 4;
- Returns:
- The seqStart.
-
hasSeqStop
boolean hasSeqStop()optional int64 seqStop = 5;
- Returns:
- Whether the seqStop field is set.
-
getSeqStop
long getSeqStop()optional int64 seqStop = 5;
- Returns:
- The seqStop.
-