Java Utililty Methods BCD Create

List of utility methods to do BCD Create

Description

The list of methods to do BCD Create are organized into topic(s).

Method

intbcdValue(byte value)
Convert byte to BCD integer.
return 10 * (0x0f & (value >> 4)) + (0x0f & value);