Package com.netscape.certsrv.base
Interface IPrettyPrintFormat
-
- All Known Implementing Classes:
PrettyPrintFormat
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 arrayindentSize
- indentation sizelineLen
- length of lineseparator
- 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 arrayindentSize
- indentation sizelineLen
- 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 arrayindentSize
- 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
-
-