Add Telepen numeric encoding hint

This commit is contained in:
Chris Wood
2024-01-02 16:33:44 +00:00
parent 93bbb676d8
commit f315df8456
2 changed files with 61 additions and 6 deletions

View File

@@ -180,6 +180,11 @@ pub enum EncodeHintType {
* exclusive.
*/
CODE128_COMPACT,
/*
* Will translate the numeric values received by the Telepen writer into the Telepen Alphanumeric form.
*/
TELEPEN_AS_NUMERIC,
}
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
@@ -333,4 +338,9 @@ pub enum EncodeHintValue {
* exclusive.
*/
Code128Compact(bool),
/**
* Translate the numeric values received by the Telepen reader into the Telepen Alphaumeric form; use {@link Boolean#TRUE}.
*/
TelepenAsNumeric(bool),
}