Android Open Source - SensorModelDataCollector Timestamped R S S






From Project

Back to project page SensorModelDataCollector.

License

The source code is released under:

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...

If you think the Android project SensorModelDataCollector listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.clarkson.sensormodeldatacollector;
/* w w w  .jav a 2s.  com*/
public class TimestampedRSS implements Comparable<Object> 
{
   public int mReceivedSignalStrength_dBm;
    public long mTimestamp;
   
    public TimestampedRSS()
    {
      mReceivedSignalStrength_dBm = 0;
      mTimestamp = 0;
    }
  public TimestampedRSS(int mReceivedSignalStrength_dBm, long mTimestamp) {
    super();
    this.mTimestamp = mTimestamp;
    this.mReceivedSignalStrength_dBm = mReceivedSignalStrength_dBm;
  }
  
  @Override
  public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + mReceivedSignalStrength_dBm;
    result = prime * result + (int) (mTimestamp ^ (mTimestamp >>> 32));
    return result;
  }
  @Override
  public boolean equals(Object obj) {
    if (this == obj)
      return true;
    if (obj == null)
      return false;
    if (getClass() != obj.getClass())
      return false;
    TimestampedRSS other = (TimestampedRSS) obj;
    if (mTimestamp != other.mTimestamp)
      return false;
    return true;
  }
  public long getTimestamp() {
    return mTimestamp;
  }
  public void setTimestamp(long mTimestamp) {
    this.mTimestamp = mTimestamp;
  }
  public int getReceivedSignalStrength() {
    return mReceivedSignalStrength_dBm;
  }
  public void setReceivedSignalStrength(int mReceivedSignalStrength) {
    this.mReceivedSignalStrength_dBm = mReceivedSignalStrength;
  }
  
  @Override
  public int compareTo(Object anotherTimestampedRSS) {
        if (!(anotherTimestampedRSS instanceof TimestampedRSS))
          throw new ClassCastException("A TimestampedRSS object expected.");
        long another_timestamped_rss = ((TimestampedRSS) anotherTimestampedRSS).getTimestamp();  
        return (int)(another_timestamped_rss - this.mTimestamp);    
  }
  
  @Override 
  public String toString()
  {
    return String.valueOf(mReceivedSignalStrength_dBm);
  }  
  
  public String rssTimestampPair()
  {
    return String.valueOf(mReceivedSignalStrength_dBm)+"," + String.valueOf(mTimestamp);
  }
}




Java Source Code List

com.clarkson.sensormodeldatacollector.MainMenu.java
com.clarkson.sensormodeldatacollector.TimestampedRSS.java
com.clarkson.sensormodeldatacollector.WiFiScanActivity.java
com.clarkson.sensormodeldatacollector.WiFiScanResultAdapter.java
com.clarkson.sensormodeldatacollector.WiFiScanResultHashMap.java
com.clarkson.sensormodeldatacollector.WiFiScanResult.java
com.clarkson.sensormodeldatacollector.util.SystemUiHiderBase.java
com.clarkson.sensormodeldatacollector.util.SystemUiHiderHoneycomb.java
com.clarkson.sensormodeldatacollector.util.SystemUiHider.java