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
String.
REGTYPE_EXPAND_SZ
REGTYPE_BINARY
Binary data in any form.
REGTYPE_DWORD
32-bit number.
REGTYPE_DWORD_LITTLE_ENDIAN
32-bit number in little-endian format
REGTYPE_DWORD_BIG_ENDIAN
32-bit number in big-endian format.
REGTYPE_LINK
Unicode symbolic link.
REGTYPE_MULTI_SZ
Array of null-terminated strings, terminated by two null characters.
REGTYPE_RESOURCE_LIST
Device-driver resource list.
name
Name of the registry key.
theType
Type of the registry key. Can be any one of the REGTYPE_ values above.


Top© 1997 Microsoft Corporation. All rights reserved. Terms of Use.