Package | Description |
---|---|
com.zebra.sdk.device |
Provides implementation for device operations
|
com.zebra.sdk.printer |
Provides implementation for Zebra branded printer functionality.
|
com.zebra.sdk.settings |
Provides implementation for applying and retrieving settings from a device.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<String,Setting> |
Profile.getAllSettings() |
java.util.Map<String,String> |
Profile.getAllSettingValues()
Retrieves all of the profile's setting values.
|
java.util.Map<String,String> |
Profile.getArchivableSettingValues()
Retrieve the values of all the settings that are archivable.
|
java.util.Set<String> |
Profile.getAvailableSettings()
Retrieve all of the setting identifiers for a profile.
|
java.util.Map<String,String> |
Profile.getClonableSettingValues()
Retrieve the values of all the settings that are clonable.
|
Setting |
Profile.getSetting(String settingId)
Retrieves the profile's
Setting for a setting id. |
String |
Profile.getSettingRange(String settingId) |
java.util.Map<String,String> |
Profile.getSettingsValues(java.util.List<String> listOfSettings)
Retrieves the profile's setting values for a list of setting ids.
|
String |
Profile.getSettingType(String settingId) |
String |
Profile.getSettingValue(String settingId)
Retrieves the profile's setting value for a setting id.
|
boolean |
Profile.isSettingReadOnly(String settingId) |
boolean |
Profile.isSettingValid(String settingId,
String value) |
boolean |
Profile.isSettingWriteOnly(String settingId) |
java.util.Map<String,String> |
Profile.processSettingsViaMap(java.util.Map<String,String> settingValuePairs)
Change or retrieve settings in the profile.
|
void |
Profile.setAllSettings(java.util.Map<String,Setting> settings)
Change settings in the profile.
|
void |
Profile.setSetting(String settingId,
Setting setting)
Change the setting in the profile.
|
void |
Profile.setSetting(String settingId,
String value)
Change the value of the setting in the profile to the given value.
|
void |
Profile.setSettings(java.util.Map<String,String> settingValuePairs)
Set more than one setting.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Map<String,Setting> |
PrinterUtil.getSettingsFromPrinter(String connectionString)
Retrieve all settings and their attributes from the specified printer.
See ConnectionBuilder for the format of connectionString . |
static java.util.Map<String,String> |
SettingsSetter.process(String destinationDevice,
java.util.Map<String,String> settingsToSet)
Sends the
settingsToSet to the destinationDevice and then returns the updated setting
values. |
Modifier and Type | Method and Description |
---|---|
java.util.Map<String,Setting> |
SettingsProvider.getAllSettings()
Retrieve all settings and their attributes.
|
java.util.Map<String,String> |
SettingsProvider.getAllSettingValues()
Retrieves all of the device's setting values.
|
java.util.Set<String> |
SettingsProvider.getAvailableSettings()
Retrieve all of the setting identifiers for a device.
|
String |
SettingsProvider.getSettingRange(String settingId)
Retrieves the allowable range for a setting.
|
java.util.Map<String,String> |
SettingsProvider.getSettingsValues(java.util.List<String> listOfSettings)
Retrieves the device's setting values for a list of setting IDs.
|
String |
SettingsProvider.getSettingType(String settingId)
Returns the data type of the setting.
|
String |
SettingsProvider.getSettingValue(String settingId)
Retrieves the device's setting value for a setting id.
|
boolean |
SettingsProvider.isSettingReadOnly(String settingId)
Returns true if the setting is read only.
|
boolean |
SettingsProvider.isSettingValid(String settingId,
String value)
Returns true if value is valid for the given setting.
|
boolean |
SettingsProvider.isSettingWriteOnly(String settingId)
Returns true if the setting is write only.
|
java.util.Map<String,String> |
SettingsProvider.processSettingsViaMap(java.util.Map<String,String> settingValuePairs)
Change or retrieve printer settings.
|
void |
SettingsProvider.setSetting(String settingId,
String value)
Sets the setting to the given value.
|
void |
SettingsProvider.setSettings(java.util.Map<String,String> settingValuePairs)
Set more than one setting.
|
© 2017 ZIH Corp. All Rights Reserved.