v1.14.1
What's Changed
- add
Radix36CosIdGenerator
to support case-insensitive storage. - fix #135
Radix62CosIdGenerator
//0TEXPEbg0001001
String id = radix62CosIdGenerator.generateAsString();
//CosIdState{timestamp=1660526325024, machineId=1, sequence=1}
CosIdState cosIdState = radix62CosIdGenerator.getStateParser().asState(id);
Radix36CosIdGenerator
//0L6U2PAD600010001
String id = radix36CosIdGenerator.generateAsString();
//CosIdState{timestamp=1660526664378, machineId=1, sequence=1}
CosIdState cosIdState = radix36CosIdGenerator.getStateParser().asState(id);
Full Changelog: v1.14.0...v1.14.1