Class HexDumper

java.lang.Object
org.djutils.decoderdumper.Dumper<HexDumper>
org.djutils.decoderdumper.HexDumper

public class HexDumper
extends Dumper<HexDumper>
Dump data in hexadecimal format and (insofar possible) as characters.

Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.

Version:
$Revision$, $LastChangedDate$, by $Author$, initial version Jan 3, 2019
Author:
Alexander Verbraeck, Peter Knoppers, Wouter Schakel
  • Constructor Details

    • HexDumper

      public HexDumper​(int addressOffset)
      Construct a new HexDumper.
      Parameters:
      addressOffset - int; address of the first byte that will be appended
    • HexDumper

      public HexDumper()
      Construct a new HexDumper.
  • Method Details

    • hexDumper

      public static String hexDumper​(int addressOffset, byte[] bytes)
      Create a HexDumper object; use it to dump an array of bytes and return the dump as a String.
      Parameters:
      addressOffset - int; address of the first byte
      bytes - byte[]; the bytes to hex-dump
      Returns:
      String; the hexadecimal and character dump of the bytes
    • hexDumper

      public static String hexDumper​(byte[] bytes)
      Create a HexDumper object with addressOffset 0; use it to dump an array of bytes and return the dump as a String.
      Parameters:
      bytes - byte[]; the bytes to hex-dump
      Returns:
      String; the hexadecimal and character dump of the bytes
    • toString

      public String toString()
      Overrides:
      toString in class Dumper<HexDumper>