Package org.yamcs.protobuf
Interface LogEntryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LogEntry
,LogEntry.Builder
public interface LogEntryOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetMsg()
optional string msg = 4;
com.google.protobuf.ByteString
optional string msg = 4;
com.google.protobuf.Timestamp
getTime()
optional .google.protobuf.Timestamp time = 1;
com.google.protobuf.TimestampOrBuilder
optional .google.protobuf.Timestamp time = 1;
getType()
optional string type = 3;
com.google.protobuf.ByteString
optional string type = 3;
getUser()
optional string user = 2;
com.google.protobuf.ByteString
optional string user = 2;
boolean
hasMsg()
optional string msg = 4;
boolean
hasTime()
optional .google.protobuf.Timestamp time = 1;
boolean
hasType()
optional string type = 3;
boolean
hasUser()
optional string user = 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
-
hasTime
boolean hasTime()optional .google.protobuf.Timestamp time = 1;
- Returns:
- Whether the time field is set.
-
getTime
com.google.protobuf.Timestamp getTime()optional .google.protobuf.Timestamp time = 1;
- Returns:
- The time.
-
getTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getTimeOrBuilder()optional .google.protobuf.Timestamp time = 1;
-
hasUser
boolean hasUser()optional string user = 2;
- Returns:
- Whether the user field is set.
-
getUser
String getUser()optional string user = 2;
- Returns:
- The user.
-
getUserBytes
com.google.protobuf.ByteString getUserBytes()optional string user = 2;
- Returns:
- The bytes for user.
-
hasType
boolean hasType()optional string type = 3;
- Returns:
- Whether the type field is set.
-
getType
String getType()optional string type = 3;
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()optional string type = 3;
- Returns:
- The bytes for type.
-
hasMsg
boolean hasMsg()optional string msg = 4;
- Returns:
- Whether the msg field is set.
-
getMsg
String getMsg()optional string msg = 4;
- Returns:
- The msg.
-
getMsgBytes
com.google.protobuf.ByteString getMsgBytes()optional string msg = 4;
- Returns:
- The bytes for msg.
-