Added charset name

This commit is contained in:
dankito 2024-10-04 07:11:46 +02:00
parent fbca7ad51f
commit ac7b11e2f6
1 changed files with 9 additions and 9 deletions

View File

@ -1,22 +1,22 @@
package net.codinux.banking.epcqrcode package net.codinux.banking.epcqrcode
enum class EpcQrCodeCharacterSet(val code: Int) { enum class EpcQrCodeCharacterSet(val code: Int, val charsetName: String) {
UTF_8(1), UTF_8(1, "UTF-8"),
ISO_8895_1(2), ISO_8895_1(2, "ISO-8859-1"),
ISO_8895_2(3), ISO_8895_2(3, "ISO-8859-2"),
ISO_8895_4(4), ISO_8895_4(4, "ISO-8859-4"),
ISO_8895_5(5), ISO_8895_5(5, "ISO-8859-5"),
ISO_8895_7(6), ISO_8895_7(6, "ISO-8859-7"),
ISO_8895_10(7), ISO_8895_10(7, "ISO-8859-10"),
ISO_8895_15(8) ISO_8895_15(8, "ISO-8859-15")
} }