Interface Serialization.CellOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Serialization.Cell,Serialization.Cell.Builder
- Enclosing class:
- Serialization
public static interface Serialization.CellOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetSeqId()optional uint64 seqId = 2;com.google.protobuf.ByteStringgetValue()optional bytes value = 1;booleanhasSeqId()optional uint64 seqId = 2;booleanhasValue()optional bytes value = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasValue
boolean hasValue()
optional bytes value = 1;- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.ByteString getValue()
optional bytes value = 1;- Returns:
- The value.
-
hasSeqId
boolean hasSeqId()
optional uint64 seqId = 2;- Returns:
- Whether the seqId field is set.
-
getSeqId
long getSeqId()
optional uint64 seqId = 2;- Returns:
- The seqId.
-
-