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();

  Object setChannel(short[] channel);

  Byte getChannelCount();

  Object setChannelCount(Byte channelCount);

  Byte getFrequencyOffset();

  Object setFrequencyOffset(Byte frequencyOffset);

  boolean getIsAidedGpsEnabled();

  Object setIsAidedGpsEnabled(boolean aidedGpsEnabled);

  boolean getIsRfUploadOnWhenMoving();

  Object setIsRfUploadOnWhenMoving(boolean rfUploadOnWhenMoving);

  short getRfParameterVersion();

  Object setRfParameterVersion(short rfParameterVersion);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy