Class RegKeyEnumValueByteArray
public class RegKeyEnumValueByteArray extends RegKeyEnumValue
{
  // Fields
  public byte value[];
  // Methods
  public byte[] getValue();
  public String toString();
}
This class is created when RegKey.enumValue returns a byte array. 
RegKeyEnumValue
  |
  +--RegKeyEnumValueByteArray
public byte[] getValue();
Retrieves the binary contents of the registry value. 
Return Value: 
Returns the byte array. 
public String toString();
Retrieves a string representation of the object. 
Return Value: 
Returns a string with the form, "com.ms.lang.RegKeyEnumValueByteArray: name = value (type = type)" 
- value[]
 - The byte array value.