Generates a UID of the proper length given a type and ID. @param type The type of UID. @param id The ID to set (just tweaks the last byte) @return A Unique ID of the proper width.
(final UniqueIdType type, byte id)
| 531 | * @return A Unique ID of the proper width. |
| 532 | */ |
| 533 | public static String generateUIDString(final UniqueIdType type, byte id) { |
| 534 | return UniqueId.uidToString(generateUID(type, id)); |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * Generates a TSUID given the metric and tag UIDs. |
nothing calls this directly
no test coverage detected