Package ghidra.util
Class StringFormat
- java.lang.Object
 - 
- ghidra.util.StringFormat
 
 
- 
public class StringFormat extends java.lang.ObjectClass with static methods formatting values in hex. 
- 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringhexByteString(byte b)Gets a hexadecimal representation of a byte value.static java.lang.StringhexWordString(short s)Gets a hexadecimal representation of a short value.static java.lang.StringpadIt(java.lang.String str, int padlen, char endchar, boolean padded)Creates a string prepended with zeros, if padding is indicated, and adds the indicated endchar as the suffix. 
 - 
 
- 
- 
Method Detail
- 
hexByteString
public static java.lang.String hexByteString(byte b)
Gets a hexadecimal representation of a byte value.- Parameters:
 b- the byte value- Returns:
 - the byte as a hexadecimal string.
 
 
- 
hexWordString
public static java.lang.String hexWordString(short s)
Gets a hexadecimal representation of a short value.- Parameters:
 s- the short value- Returns:
 - the short as a hexadecimal string.
 
 
- 
padIt
public static java.lang.String padIt(java.lang.String str, int padlen, char endchar, boolean padded)Creates a string prepended with zeros, if padding is indicated, and adds the indicated endchar as the suffix.- Parameters:
 str- the original stringpadlen- length of the padded string without the suffix character.endchar- the suffix characterpadded- if true then prepend with zeros- Returns:
 - return the possibly padded string containing the suffix.
 
 
 - 
 
 -