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

com.geotab.model.entity.device.RfChannelsAware Maven / Gradle / Ivy

package com.geotab.model.entity.device;

/**
 * An interface for devices with RF channels.
 */
public interface RfChannelsAware {

  short[] getChannel();

  void setChannel(short[] channel);

  Byte getChannelCount();

  void setChannelCount(Byte channelCount);

  Byte getFrequencyOffset();

  void setFrequencyOffset(Byte frequencyOffset);

  boolean isAidedGpsEnabled();

  void setAidedGpsEnabled(boolean aidedGpsEnabled);

  boolean isRfUploadOnWhenMoving();

  void setRfUploadOnWhenMoving(boolean rfUploadOnWhenMoving);

  short getRfParameterVersion();

  void setRfParameterVersion(short rfParameterVersion);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy