Interface IPrettyPrintFormat


  • public interface IPrettyPrintFormat
    This class will display the certificate content in predefined format.
    Version:
    $Revision$, $Date$
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String toHexString​(byte[] in)
      Retrieves a pretty print string of the given byte array.
      java.lang.String toHexString​(byte[] in, int indentSize)
      Retrieves a pretty print string of the given byte array.
      java.lang.String toHexString​(byte[] in, int indentSize, int lineLen)
      Retrieves a pretty print string of the given byte array.
      java.lang.String toHexString​(byte[] in, int indentSize, int lineLen, java.lang.String separator)
      Retrieves a pretty print string of the given byte array.
    • Method Detail

      • toHexString

        java.lang.String toHexString​(byte[] in,
                                     int indentSize,
                                     int lineLen,
                                     java.lang.String separator)
        Retrieves a pretty print string of the given byte array.
        Parameters:
        in - byte array
        indentSize - indentation size
        lineLen - length of line
        separator - separator string
        Returns:
        pretty print string
      • toHexString

        java.lang.String toHexString​(byte[] in,
                                     int indentSize,
                                     int lineLen)
        Retrieves a pretty print string of the given byte array.
        Parameters:
        in - byte array
        indentSize - indentation size
        lineLen - length of line
        Returns:
        pretty print string
      • toHexString

        java.lang.String toHexString​(byte[] in,
                                     int indentSize)
        Retrieves a pretty print string of the given byte array.
        Parameters:
        in - byte array
        indentSize - indentation size
        Returns:
        pretty print string
      • toHexString

        java.lang.String toHexString​(byte[] in)
        Retrieves a pretty print string of the given byte array.
        Parameters:
        in - byte array
        Returns:
        pretty print string