List of usage examples for org.apache.poi.hpsf ClassID getBytes
public byte[] getBytes()
From source file:poi.poifs.poibrowser.Codec.java
License:Apache License
/** * <p>Converts a class ID into its hexadecimal notation.</p> *///from w w w. j a v a 2s .c o m public static String hexEncode(final ClassID classID) { return hexEncode(classID.getBytes()); }