All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rosgraph_msgs.msg.dds.Clock Maven / Gradle / Ivy

package rosgraph_msgs.msg.dds;

import us.ihmc.communication.packets.Packet;
import us.ihmc.euclid.interfaces.Settable;
import us.ihmc.euclid.interfaces.EpsilonComparable;
import java.util.function.Supplier;
import us.ihmc.pubsub.TopicDataType;

public class Clock extends Packet implements Settable, EpsilonComparable
{
   /**
            * This message simply communicates the current time.
            * For more information, see http://www.ros.org/wiki/Clock
            */
   public builtin_interfaces.msg.dds.Time clock_;

   public Clock()
   {
      clock_ = new builtin_interfaces.msg.dds.Time();
   }

   public Clock(Clock other)
   {
      this();
      set(other);
   }

   public void set(Clock other)
   {
      builtin_interfaces.msg.dds.TimePubSubType.staticCopy(other.clock_, clock_);   }


   /**
            * This message simply communicates the current time.
            * For more information, see http://www.ros.org/wiki/Clock
            */
   public builtin_interfaces.msg.dds.Time getClock()
   {
      return clock_;
   }


   public static Supplier getPubSubType()
   {
      return ClockPubSubType::new;
   }

   @Override
   public Supplier getPubSubTypePacket()
   {
      return ClockPubSubType::new;
   }

   @Override
   public boolean epsilonEquals(Clock other, double epsilon)
   {
      if(other == null) return false;
      if(other == this) return true;

      if (!this.clock_.epsilonEquals(other.clock_, epsilon)) return false;

      return true;
   }

   @Override
   public boolean equals(Object other)
   {
      if(other == null) return false;
      if(other == this) return true;
      if(!(other instanceof Clock)) return false;

      Clock otherMyClass = (Clock) other;

      if (!this.clock_.equals(otherMyClass.clock_)) return false;

      return true;
   }

   @Override
   public java.lang.String toString()
   {
      StringBuilder builder = new StringBuilder();

      builder.append("Clock {");
      builder.append("clock=");
      builder.append(this.clock_);
      builder.append("}");
      return builder.toString();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy