Package com.ms.lang Previous
Previous
Microsoft Packages
Microsoft Packages
Index
Index
Next
Next

Class RegKeyEnumValue

public abstract class RegKeyEnumValue
{
	public final int REGTYPE_NONE     = 0;
	public final int REGTYPE_SZ      = 1;
	public final int REGTYPE_EXPAND_SZ    = 2;
	public final int REGTYPE_BINARY     = 3;
	public final int REGTYPE_DWORD     = 4;
	public final int REGTYPE_DWORD_LITTLE_ENDIAN  = 4;
	public final int REGTYPE_DWORD_BIG_ENDIAN  = 5; 
	public final int REGTYPE_LINK     = 6;
	public final int REGTYPE_MULTI_SZ    = 7;
	public final int REGTYPE_RESOURCE_LIST   = 8;
	
	public String name;
	public int theType;
}

This class defines the name and type of an enumerated registry key value.

Fields

REGTYPE_NONE
No defined value type.
REGTYPE_SZ
A String.
REGTYPE_EXPAND_SZ
REGTYPE_BINARY
Binary data in any form.
REGTYPE_DWORD
A 32-bit number.
REGTYPE_DWORD_LITTLE_ENDIAN
A 32-bit number in little-endian format
REGTYPE_DWORD_BIG_ENDIAN
A 32-bit number in big-endian format.
REGTYPE_LINK
A Unicode symbolic link.
REGTYPE_MULTI_SZ
An array of null-terminated strings, terminated by two null characters.
REGTYPE_RESOURCE_LIST
A device-driver resource list.
name
The name of the registry key.
theType
The type of the registry key. Can be any one of the REGTYPE_ values listed here.


Top© 1996 Microsoft Corporation. All rights reserved.