Interface TimeMessageOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
TimeMessage, TimeMessage.Builder

public interface TimeMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    local UNIX time in millisecs
    long
    Yamcs time in millisecs
    double
    time speed (mission time vs wall clock time)
    boolean
    local UNIX time in millisecs
    boolean
    Yamcs time in millisecs
    boolean
    time speed (mission time vs wall clock time)

    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

    • hasLocalTime

      boolean hasLocalTime()
      local UNIX time in millisecs
       
      optional int64 localTime = 1;
      Returns:
      Whether the localTime field is set.
    • getLocalTime

      long getLocalTime()
      local UNIX time in millisecs
       
      optional int64 localTime = 1;
      Returns:
      The localTime.
    • hasMissionTime

      boolean hasMissionTime()
      Yamcs time in millisecs
       
      optional int64 missionTime = 2;
      Returns:
      Whether the missionTime field is set.
    • getMissionTime

      long getMissionTime()
      Yamcs time in millisecs
       
      optional int64 missionTime = 2;
      Returns:
      The missionTime.
    • hasSpeed

      boolean hasSpeed()
      time speed (mission time vs wall clock time)
       
      optional double speed = 3;
      Returns:
      Whether the speed field is set.
    • getSpeed

      double getSpeed()
      time speed (mission time vs wall clock time)
       
      optional double speed = 3;
      Returns:
      The speed.