Project: engagement_generation License: BSD Dependencies:
Used by:
None |
engagement_generation/msg_gen/java/ros/pkg/std_msgs/msg/String.javaGo to the documentation of this file.00001 /* Auto-generated by genmsg_java.py for file /opt/ros/diamondback/stacks/ros_comm/messages/std_msgs/msg/String.msg */ 00002 00003 package ros.pkg.std_msgs.msg; 00004 00005 import java.nio.ByteBuffer; 00006 00007 public class String extends ros.communication.Message { 00008 00009 public java.lang.String data = new java.lang.String(); 00010 00011 public String() { 00012 } 00013 00014 public static java.lang.String __s_getDataType() { return "std_msgs/String"; } 00015 public java.lang.String getDataType() { return __s_getDataType(); } 00016 public static java.lang.String __s_getMD5Sum() { return "992ce8a1687cec8c8bd883ec73ca41d1"; } 00017 public java.lang.String getMD5Sum() { return __s_getMD5Sum(); } 00018 public static java.lang.String __s_getMessageDefinition() { return "string data\n" + 00019 "\n" + 00020 ""; } 00021 public java.lang.String getMessageDefinition() { return __s_getMessageDefinition(); } 00022 00023 public String clone() { 00024 String c = new String(); 00025 c.deserialize(serialize(0)); 00026 return c; 00027 } 00028 00029 public void setTo(ros.communication.Message m) { 00030 deserialize(m.serialize(0)); 00031 } 00032 00033 public int serializationLength() { 00034 int __l = 0; 00035 __l += 4 + data.length(); 00036 return __l; 00037 } 00038 00039 public void serialize(ByteBuffer bb, int seq) { 00040 Serialization.writeString(bb, data); 00041 } 00042 00043 public void deserialize(ByteBuffer bb) { 00044 data = Serialization.readString(bb); 00045 } 00046 00047 @SuppressWarnings("all") 00048 public boolean equals(Object o) { 00049 if(!(o instanceof String)) 00050 return false; 00051 String other = (String) o; 00052 return 00053 data.equals(other.data) && 00054 true; 00055 } 00056 00057 @SuppressWarnings("all") 00058 public int hashCode() { 00059 final int prime = 31; 00060 int result = 1; 00061 long tmp; 00062 result = prime * result + (this.data == null ? 0 : this.data.hashCode()); 00063 return result; 00064 } 00065 } // class String 00066 |