| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Hex |
|
| 1.0;1 |
| 1 | package org.jaudiotagger.logging; | |
| 2 | ||
| 3 | /** | |
| 4 | * Display as hex | |
| 5 | */ | |
| 6 | 0 | public class Hex |
| 7 | { | |
| 8 | /** | |
| 9 | * Display as hex | |
| 10 | * | |
| 11 | * @param value | |
| 12 | * @return | |
| 13 | */ | |
| 14 | public static String asHex(long value) | |
| 15 | { | |
| 16 | 62 | return "0x" + Long.toHexString(value); |
| 17 | } | |
| 18 | } |