Example #1
0
 /**
  * Gets the change in degrees required to initiate a watchHeading success callback.
  *
  * @return double
  */
 public double getFilter() {
   return JsoHelper.getAttributeAsDouble(jsObj, "filter");
 }
Example #2
0
 /**
  * The current position of the file pointer
  *
  * @return
  */
 public double getPosition() {
   return JsoHelper.getAttributeAsDouble(jsObj, "position");
 }
Example #3
0
 /**
  * Gets how often to retrieve the compass heading, in milliseconds. Default value is 100.
  *
  * @return double
  */
 public double getFrequency() {
   return JsoHelper.getAttributeAsDouble(jsObj, "frequency");
 }
Example #4
0
 /**
  * The length of the file to be written.
  *
  * @return
  */
 public double getLength() {
   return JsoHelper.getAttributeAsDouble(jsObj, "length");
 }