Uses of Class
com.zebra.sdk.settings.SettingsException
Packages that use SettingsException
Package
Description
Provides implementation for device operations
Provides implementation for Zebra branded printer functionality.
Provides implementation for applying and retrieving settings from a device.
-
Uses of SettingsException in com.zebra.sdk.device
Methods in com.zebra.sdk.device that throw SettingsExceptionModifier and TypeMethodDescriptionProfile.getAllSettings()Profile.getAllSettingValues()Retrieves all of the profile's setting values.Profile.getArchivableSettingValues()Retrieve the values of all the settings that are archivable.Profile.getAvailableSettings()Retrieve all of the setting identifiers for a profile.Profile.getClonableSettingValues()Retrieve the values of all the settings that are clonable.Profile.getSetting(String settingId) Retrieves the profile'sSettingfor a setting id.Profile.getSettingRange(String settingId) Profile.getSettingsValues(List<String> listOfSettings) Retrieves the profile's setting values for a list of setting ids.Profile.getSettingType(String settingId) Profile.getSettingValue(String settingId) Retrieves the profile's setting value for a setting id.booleanProfile.isSettingReadOnly(String settingId) booleanProfile.isSettingValid(String settingId, String value) booleanProfile.isSettingWriteOnly(String settingId) Profile.processSettingsViaMap(Map<String, String> settingValuePairs) Change or retrieve settings in the profile.voidProfile.setAllSettings(Map<String, Setting> settings) Change settings in the profile.voidProfile.setSetting(String settingId, Setting setting) Change the setting in the profile.voidProfile.setSetting(String settingId, String value) Change the value of the setting in the profile to the given value.voidProfile.setSettings(Map<String, String> settingValuePairs) Set more than one setting. -
Uses of SettingsException in com.zebra.sdk.printer
Methods in com.zebra.sdk.printer that throw SettingsExceptionModifier and TypeMethodDescriptionPrinterUtil.getSettingsFromPrinter(String connectionString) Retrieve all settings and their attributes from the specified printer.
See ConnectionBuilder for the format ofconnectionString.Sends thesettingsToSetto thedestinationDeviceand then returns the updated setting values. -
Uses of SettingsException in com.zebra.sdk.settings
Methods in com.zebra.sdk.settings that throw SettingsExceptionModifier and TypeMethodDescriptionSettingsProvider.getAllSettings()Retrieve all settings and their attributes.SettingsProvider.getAllSettingValues()Retrieves all of the device's setting values.SettingsProvider.getAvailableSettings()Retrieve all of the setting identifiers for a device.SettingsProvider.getSettingRange(String settingId) Retrieves the allowable range for a setting.SettingsProvider.getSettingsValues(List<String> listOfSettings) Retrieves the device's setting values for a list of setting IDs.SettingsProvider.getSettingType(String settingId) Returns the data type of the setting.SettingsProvider.getSettingValue(String settingId) Retrieves the device's setting value for a setting id.booleanSettingsProvider.isSettingReadOnly(String settingId) Returns true if the setting is read only.booleanSettingsProvider.isSettingValid(String settingId, String value) Returns true if value is valid for the given setting.booleanSettingsProvider.isSettingWriteOnly(String settingId) Returns true if the setting is write only.SettingsProvider.processSettingsViaMap(Map<String, String> settingValuePairs) Change or retrieve printer settings.voidSettingsProvider.setSetting(String settingId, String value) Sets the setting to the given value.voidSettingsProvider.setSettings(Map<String, String> settingValuePairs) Set more than one setting.