2 package format;
3
4 /**
5 * UnsignedHexFormat ist eine Formatierer für ganze Zahlen.
6 * Beispielprogramm zur Programmiertechnik 1, Teil 5.
7 * @author H.Drachenfels
8 * @version 5.8.2016
9 */
10 public final class UnsignedHexFormat implements Formatter {
11 /**
12 * format formatiert ganze Zahlen hexadezimal ohne Vorzeichen.
13 * @param n eine ganze Zahl.
14 * @return ein String mit der hexadezimalen Darstellung von n.
15 */
16 @Override
17 public String format(int n) {
18 return Integer.toHexString(n);
19 }
20 }
21