Example usage for org.apache.poi.hpsf ClassID getBytes

List of usage examples for org.apache.poi.hpsf ClassID getBytes

Introduction

In this page you can find the example usage for org.apache.poi.hpsf ClassID getBytes.

Prototype

public byte[] getBytes() 

Source Link

Document

Gets the bytes making out the class ID.

Usage

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());
}